Changeset 8399 in josm for trunk/src/org
- Timestamp:
- 2015-05-19T23:04:25+02:00 (10 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui
- Files:
-
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/ExtendedDialog.java
r8390 r8399 88 88 private String[] bToolTipTexts; 89 89 private transient Icon[] bIcons; 90 private transientSet<Integer> cancelButtonIdx = Collections.emptySet();90 private Set<Integer> cancelButtonIdx = Collections.emptySet(); 91 91 private int defaultButtonIdx = 1; 92 92 protected JButton defaultButton = null; … … 108 108 // For easy access when inherited 109 109 protected transient Insets contentInsets = new Insets(10,5,0,5); 110 protected transientList<JButton> buttons = new ArrayList<>();110 protected List<JButton> buttons = new ArrayList<>(); 111 111 112 112 /** -
trunk/src/org/openstreetmap/josm/gui/ImageryMenu.java
r8308 r8399 256 256 * @since 5803 257 257 */ 258 private transient List<Object> dynamicItems = new ArrayList<>(20);258 private List<Object> dynamicItems = new ArrayList<>(20); 259 259 260 260 /** -
trunk/src/org/openstreetmap/josm/gui/MainMenu.java
r8394 r8399 232 232 public final HistoryInfoWebAction historyinfoweb = new HistoryInfoWebAction(); 233 233 /** View / "Zoom to"... actions */ 234 public final transientMap<String, AutoScaleAction> autoScaleActions = new HashMap<>();234 public final Map<String, AutoScaleAction> autoScaleActions = new HashMap<>(); 235 235 /** View / Jump to position */ 236 236 public final JumpToAction jumpToAct = new JumpToAction(); -
trunk/src/org/openstreetmap/josm/gui/MapFrame.java
r8378 r8399 114 114 private final JToolBar toolBarToggle = new JToolBar(JToolBar.VERTICAL); 115 115 116 private final transientList<ToggleDialog> allDialogs = new ArrayList<>();117 private final transientList<MapMode> mapModes = new ArrayList<>();118 private final transientList<IconToggleButton> allDialogButtons = new ArrayList<>();119 public final transientList<IconToggleButton> allMapModeButtons = new ArrayList<>();116 private final List<ToggleDialog> allDialogs = new ArrayList<>(); 117 private final List<MapMode> mapModes = new ArrayList<>(); 118 private final List<IconToggleButton> allDialogButtons = new ArrayList<>(); 119 public final List<IconToggleButton> allMapModeButtons = new ArrayList<>(); 120 120 121 121 private final ListAllButtonsAction listAllDialogsAction = new ListAllButtonsAction(allDialogButtons); -
trunk/src/org/openstreetmap/josm/gui/MapStatus.java
r8390 r8399 732 732 private final JMenuItem jumpButton = add(Main.main.menu.jumpToAct); 733 733 734 private final transientCollection<JCheckBoxMenuItem> somItems = new ArrayList<>();734 private final Collection<JCheckBoxMenuItem> somItems = new ArrayList<>(); 735 735 736 736 private final JSeparator separator = new JSeparator(); -
trunk/src/org/openstreetmap/josm/gui/ScrollViewport.java
r8308 r8399 66 66 private JComponent component = null; 67 67 68 private transientList<JButton> buttons = new ArrayList<>();68 private List<JButton> buttons = new ArrayList<>(); 69 69 70 70 private Timer timer = new Timer(100, new ActionListener() { -
trunk/src/org/openstreetmap/josm/gui/conflict/pair/ListMergeModel.java
r8390 r8399 827 827 828 828 private int selectedIdx; 829 private final transientList<ComparePairType> compareModes;829 private final List<ComparePairType> compareModes; 830 830 831 831 /** -
trunk/src/org/openstreetmap/josm/gui/conflict/tags/TagConflictResolverModel.java
r8308 r8399 23 23 24 24 private transient TagCollection tags; 25 private transientList<String> displayedKeys;26 private transientSet<String> keysWithConflicts;25 private List<String> displayedKeys; 26 private Set<String> keysWithConflicts; 27 27 private transient Map<String, MultiValueResolutionDecision> decisions; 28 28 private int numConflicts; -
trunk/src/org/openstreetmap/josm/gui/dialogs/DialogsPanel.java
r8395 r8399 19 19 20 20 public class DialogsPanel extends JPanel implements Destroyable { 21 protected transientList<ToggleDialog> allDialogs = new ArrayList<>();21 protected List<ToggleDialog> allDialogs = new ArrayList<>(); 22 22 protected MultiSplitPane mSpltPane = new MultiSplitPane(); 23 23 protected static final int DIVIDER_SIZE = 5; … … 26 26 * Panels that are added to the multisplitpane. 27 27 */ 28 private transientList<JPanel> panels = new ArrayList<>();28 private List<JPanel> panels = new ArrayList<>(); 29 29 30 30 private final JSplitPane parent; -
trunk/src/org/openstreetmap/josm/gui/dialogs/properties/TagEditHelper.java
r8371 r8399 532 532 533 533 class AddTagsDialog extends AbstractTagsDialog { 534 private transientList<JosmAction> recentTagsActions = new ArrayList<>();534 private List<JosmAction> recentTagsActions = new ArrayList<>(); 535 535 536 536 // Counter of added commands for possible undo -
trunk/src/org/openstreetmap/josm/gui/dialogs/relation/MemberTable.java
r8308 r8399 282 282 } 283 283 284 private final transientCollection<Direction> connectionTypesOfInterest = Arrays.asList(284 private final Collection<Direction> connectionTypesOfInterest = Arrays.asList( 285 285 WayConnectionType.Direction.FORWARD, WayConnectionType.Direction.BACKWARD); 286 286 -
trunk/src/org/openstreetmap/josm/gui/history/HistoryBrowserModel.java
r8392 r8399 532 532 public class TagTableModel extends AbstractTableModel { 533 533 534 private transientList<String> keys;534 private List<String> keys; 535 535 private PointInTimeType pointInTimeType; 536 536 -
trunk/src/org/openstreetmap/josm/gui/preferences/SourceEditor.java
r8394 r8399 1053 1053 1054 1054 protected static class IconPathTableModel extends AbstractTableModel { 1055 private transientList<String> data;1055 private List<String> data; 1056 1056 private DefaultListSelectionModel selectionModel; 1057 1057 -
trunk/src/org/openstreetmap/josm/gui/preferences/advanced/ListEditor.java
r8378 r8399 30 30 public class ListEditor extends ExtendedDialog { 31 31 32 private transientList<String> data;32 private List<String> data; 33 33 private transient PrefEntry entry; 34 34 -
trunk/src/org/openstreetmap/josm/gui/preferences/advanced/ListListEditor.java
r8382 r8399 39 39 40 40 private EntryListModel entryModel; 41 private transientList<List<String>> data;41 private List<List<String>> data; 42 42 private transient PrefEntry entry; 43 43 -
trunk/src/org/openstreetmap/josm/gui/preferences/advanced/MapListEditor.java
r8382 r8399 49 49 private MapTableModel tableModel; 50 50 51 private transientList<List<String>> dataKeys;52 private transientList<List<String>> dataValues;51 private List<List<String>> dataKeys; 52 private List<List<String>> dataValues; 53 53 private Integer entryIdx; 54 54 -
trunk/src/org/openstreetmap/josm/gui/preferences/display/LanguagePreference.java
r8308 r8399 77 77 78 78 private static class LanguageComboBoxModel extends DefaultComboBoxModel<Locale> { 79 private final transientList<Locale> data = new ArrayList<>();79 private final List<Locale> data = new ArrayList<>(); 80 80 81 81 public LanguageComboBoxModel(){ -
trunk/src/org/openstreetmap/josm/gui/preferences/projection/CodeProjectionChoice.java
r8365 r8399 49 49 private ProjectionCodeListModel model; 50 50 public JList<String> selectionList; 51 private transientList<String> data;52 private transientList<String> filteredData;51 private List<String> data; 52 private List<String> filteredData; 53 53 private static final String DEFAULT_CODE = "EPSG:3857"; 54 54 private String lastCode = DEFAULT_CODE; -
trunk/src/org/openstreetmap/josm/gui/widgets/DisableShortcutsOnFocusGainedTextField.java
r8308 r8399 97 97 98 98 private final transient List<Pair<Action,Shortcut>> unregisteredActionShortcuts = new ArrayList<>(); 99 private final transientSet<JosmAction> disabledMenuActions = new HashSet<>();99 private final Set<JosmAction> disabledMenuActions = new HashSet<>(); 100 100 101 101 @Override
Note:
See TracChangeset
for help on using the changeset viewer.