Ignore:
Timestamp:
2017-06-10T00:55:46+02:00 (7 years ago)
Author:
michael2402
Message:

Doument the gui.tagging package

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/tagging/TagEditorModel.java

    r11747 r12384  
    3535 */
    3636public class TagEditorModel extends AbstractTableModel {
     37    /**
     38     * The dirty property. It is set whenever this table was changed
     39     */
    3740    public static final String PROP_DIRTY = TagEditorModel.class.getName() + ".dirty";
    3841
     
    257260    }
    258261
     262    /**
     263     * Gets a tag row
     264     * @param idx The index of the row
     265     * @return The tag model for that row
     266     */
    259267    public TagModel get(int idx) {
    260268        return idx >= tags.size() ? null : tags.get(idx);
Note: See TracChangeset for help on using the changeset viewer.