Changeset 11525 in josm for trunk/src/com/kitfox/svg/Marker.java
- Timestamp:
- 2017-02-02T00:08:08+01:00 (9 years ago)
- File:
-
- 1 edited
-
trunk/src/com/kitfox/svg/Marker.java (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/com/kitfox/svg/Marker.java
r8084 r11525 61 61 boolean markerUnitsStrokeWidth = true; //if set to false 'userSpaceOnUse' is assumed 62 62 63 @Override 63 64 public String getTagName() 64 65 { … … 66 67 } 67 68 69 @Override 68 70 protected void build() throws SVGException 69 71 { … … 131 133 } 132 134 135 @Override 133 136 protected boolean outsideClip(Graphics2D g) throws SVGException 134 137 { … … 144 147 } 145 148 149 @Override 146 150 public void render(Graphics2D g) throws SVGException 147 151 { … … 173 177 } 174 178 179 @Override 175 180 public Shape getShape() 176 181 { … … 179 184 } 180 185 186 @Override 181 187 public Rectangle2D getBoundingBox() throws SVGException 182 188 { … … 192 198 * update 193 199 */ 200 @Override 194 201 public boolean updateTime(double curTime) throws SVGException 195 202 { … … 229 236 { 230 237 231 private ArrayList markerList = new ArrayList(); 238 private ArrayList<MarkerPos> markerList = new ArrayList<MarkerPos>(); 232 239 boolean started = false; 233 240 … … 362 369 * @return the markerList 363 370 */ 364 public ArrayList getMarkerList() 371 public ArrayList<MarkerPos> getMarkerList() 365 372 { 366 373 return markerList;
Note:
See TracChangeset
for help on using the changeset viewer.
