Changeset 11525 in josm for trunk/src/com/kitfox/svg/MissingGlyph.java
- Timestamp:
- 2017-02-02T00:08:08+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/com/kitfox/svg/MissingGlyph.java
r8084 r11525 73 73 } 74 74 75 @Override 75 76 public String getTagName() 76 77 { … … 82 83 * each child tag that has been processed 83 84 */ 85 @Override 84 86 public void loaderAddChild(SVGLoaderHelper helper, SVGElement child) throws SVGElementException 85 87 { … … 87 89 } 88 90 91 @Override 89 92 protected void build() throws SVGException 90 93 { … … 153 156 } 154 157 158 @Override 155 159 public void render(Graphics2D g) throws SVGException 156 160 { … … 162 166 } 163 167 164 Iterator it = children.iterator(); 168 Iterator<SVGElement> it = children.iterator(); 165 169 while (it.hasNext()) 166 170 { 167 SVGElement ele = (SVGElement)it.next();171 SVGElement ele = it.next(); 168 172 if (ele instanceof RenderableElement) 169 173 { … … 212 216 } 213 217 218 @Override 214 219 public Shape getShape() 215 220 { … … 221 226 } 222 227 228 @Override 223 229 public Rectangle2D getBoundingBox() throws SVGException 224 230 { … … 237 243 * update 238 244 */ 245 @Override 239 246 public boolean updateTime(double curTime) throws SVGException 240 247 {
Note:
See TracChangeset
for help on using the changeset viewer.