Changeset 14328 in josm for trunk/src/com/kitfox/svg/SVGDiagram.java
- Timestamp:
- 2018-10-14T15:15:50+02:00 (8 years ago)
- File:
-
- 1 edited
-
trunk/src/com/kitfox/svg/SVGDiagram.java (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/com/kitfox/svg/SVGDiagram.java
r11525 r14328 90 90 final URI xmlBase; 91 91 92 /** Creates a new instance of SVGDiagram */ 92 /** 93 * Creates a new instance of SVGDiagram 94 * @param xmlBase 95 * @param universe 96 */ 93 97 public SVGDiagram(URI xmlBase, SVGUniverse universe) 94 98 { … … 100 104 /** 101 105 * Draws this diagram to the passed graphics context 106 * @param g 107 * @throws com.kitfox.svg.SVGException 102 108 */ 103 109 public void render(Graphics2D g) throws SVGException … … 114 120 * SVGElement.getPath() is added for each entry. 115 121 * 122 * @param point 123 * @param retVec 116 124 * @return the passed in list 125 * @throws com.kitfox.svg.SVGException 117 126 */ 118 127 public List<List<SVGElement>> pick(Point2D point, List<List<SVGElement>> retVec) throws SVGException … … 179 188 /** 180 189 * Returns the viewing rectangle of this diagram in device coordinates. 190 * @param rect 191 * @return 181 192 */ 182 193 public Rectangle2D getViewRect(Rectangle2D rect) … … 224 235 * Updates all attributes in this diagram associated with a time event. 225 236 * Ie, all attributes with track information. 237 * @param curTime 238 * @throws com.kitfox.svg.SVGException 226 239 */ 227 240 public void updateTime(double curTime) throws SVGException … … 240 253 * SVGRoot when its x, y, width or height parameters are specified as 241 254 * percentages. 255 * @param deviceViewport 242 256 */ 243 257 public void setDeviceViewport(Rectangle deviceViewport)
Note:
See TracChangeset
for help on using the changeset viewer.
