Ignore:
Timestamp:
2007-05-27T20:25:38+02:00 (17 years ago)
Author:
frsantos
Message:

javadoc

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  
    2828         * @param message Description
    2929         * @param icon Associated icon
     30         * @param color The color of this severity
    3031         */
    3132    Severity(String message, String icon, Color color)
  • applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/TestError.java

    r2672 r3037  
    206206    }   
    207207   
     208    /**
     209     * Visitor that highlights the primitives affected by this error
     210     * @author frsantos
     211     */
    208212    class PaintVisitor implements Visitor
    209213    {
     
    311315        /**
    312316         * 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
    313319         */
    314320        protected boolean isNodeVisible(Node n) {
     
    321327         * NOTE: This will return true for a small number of non-visible
    322328         *       segments.
     329         * @param ls The segment to check
     330         * @return true if the segment is visible
    323331         */
    324332        protected boolean isSegmentVisible(Segment ls) {
  • applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/ValidateUploadHook.java

    r2792 r3037  
    6161     * Displays a screen where the actions that would be taken are displayed and
    6262     * give the user the possibility to cancel the upload.
     63     * @param errors The errors displayed in the screen
    6364     * @return <code>true</code>, if the upload should continue. <code>false</code>
    6465     *          if the user requested cancel.
Note: See TracChangeset for help on using the changeset viewer.