Changes between Initial Version and Version 1 of Ticket #8799


Ignore:
Timestamp:
2013-06-16T13:08:45+02:00 (13 years ago)
Author:
Don-vip
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #8799

    • Property Keywords pattern added
  • Ticket #8799 – Description

    initial v1  
    1 please rename the method org.openstreetmap.josm.data.osm.IPrimitive.visit(PrimitiveVisitor visitor);
    2 to GoF conventional
     1Please rename the method
     2{{{#!java
     3org.openstreetmap.josm.data.osm.IPrimitive.visit(PrimitiveVisitor visitor);
     4}}}
     5to [http://en.wikipedia.org/wiki/Visitor_pattern#Java_example GoF conventional]:
     6{{{#!java
    37IPrimitive.accept(PrimitiveVisitor visitor);
     8}}}
    49or
     10{{{#!java
    511IPrimitive.acceptVisitor(PrimitiveVisitor visitor);
     12}}}