Changeset 3037 in osm for applications
- Timestamp:
- 2007-05-27T20:25:38+02:00 (17 years ago)
- Location:
- applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/Severity.java
r2672 r3037 28 28 * @param message Description 29 29 * @param icon Associated icon 30 * @param color The color of this severity 30 31 */ 31 32 Severity(String message, String icon, Color color) -
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/TestError.java
r2672 r3037 206 206 } 207 207 208 /** 209 * Visitor that highlights the primitives affected by this error 210 * @author frsantos 211 */ 208 212 class PaintVisitor implements Visitor 209 213 { … … 311 315 /** 312 316 * Checks if the given node is in the visible area. 317 * @param n The node to check for visibility 318 * @return true if the node is visible 313 319 */ 314 320 protected boolean isNodeVisible(Node n) { … … 321 327 * NOTE: This will return true for a small number of non-visible 322 328 * segments. 329 * @param ls The segment to check 330 * @return true if the segment is visible 323 331 */ 324 332 protected boolean isSegmentVisible(Segment ls) { -
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/ValidateUploadHook.java
r2792 r3037 61 61 * Displays a screen where the actions that would be taken are displayed and 62 62 * give the user the possibility to cancel the upload. 63 * @param errors The errors displayed in the screen 63 64 * @return <code>true</code>, if the upload should continue. <code>false</code> 64 65 * if the user requested cancel.
Note:
See TracChangeset
for help on using the changeset viewer.