Changeset 10153 in josm
- Timestamp:
- 2016-04-21T09:19:56+02:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/PrimitiveData.java
r9994 r10153 74 74 } 75 75 76 @Override77 public abstract OsmPrimitiveType getType();78 79 76 private void writeObject(ObjectOutputStream oos) throws IOException { 80 77 // since super class is not Serializable -
trunk/src/org/openstreetmap/josm/gui/correction/CorrectionTableModel.java
r10125 r10153 31 31 applyColumn = getColumnCount() - 1; 32 32 } 33 34 @Override35 public abstract int getColumnCount();36 33 37 34 protected abstract boolean isBoldCell(int row, int column); -
trunk/src/org/openstreetmap/josm/gui/dialogs/relation/MemberTableCellRenderer.java
r9983 r10153 3 3 4 4 import java.awt.Color; 5 import java.awt.Component;6 5 7 6 import javax.swing.JLabel; … … 54 53 } 55 54 56 @Override57 public abstract Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected,58 boolean hasFocus, int row, int column);59 60 55 /** 61 56 * replies the model -
trunk/src/org/openstreetmap/josm/gui/io/AbstractIOTask.java
r9543 r10153 89 89 90 90 /** 91 * Runs the task92 */93 @Override94 public abstract void run();95 96 /**97 91 * Cancel the task 98 92 */ -
trunk/src/org/openstreetmap/josm/gui/layer/Layer.java
r10031 r10153 6 6 import java.awt.Color; 7 7 import java.awt.Component; 8 import java.awt.Graphics2D;9 8 import java.awt.event.ActionEvent; 10 9 import java.beans.PropertyChangeListener; … … 24 23 import org.openstreetmap.josm.actions.SaveActionBase; 25 24 import org.openstreetmap.josm.actions.SaveAsAction; 26 import org.openstreetmap.josm.data.Bounds;27 25 import org.openstreetmap.josm.data.osm.visitor.BoundingXYVisitor; 28 26 import org.openstreetmap.josm.data.projection.Projection; 29 27 import org.openstreetmap.josm.data.projection.ProjectionChangeListener; 30 import org.openstreetmap.josm.gui.MapView;31 28 import org.openstreetmap.josm.tools.Destroyable; 32 29 import org.openstreetmap.josm.tools.ImageProvider; … … 188 185 189 186 /** 190 * Paint the dataset using the engine set.191 * @param mv The object that can translate GeoPoints to screen coordinates.192 */193 @Override194 public abstract void paint(Graphics2D g, MapView mv, Bounds box);195 196 /**197 187 * Return a representative small image for this layer. The image must not 198 188 * be larger than 64 pixel in any dimension.
Note:
See TracChangeset
for help on using the changeset viewer.