Changes between Initial Version and Version 1 of Ticket #8799
- Timestamp:
- 2013-06-16T13:08:45+02:00 (13 years ago)
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 1 Please rename the method 2 {{{#!java 3 org.openstreetmap.josm.data.osm.IPrimitive.visit(PrimitiveVisitor visitor); 4 }}} 5 to [http://en.wikipedia.org/wiki/Visitor_pattern#Java_example GoF conventional]: 6 {{{#!java 3 7 IPrimitive.accept(PrimitiveVisitor visitor); 8 }}} 4 9 or 10 {{{#!java 5 11 IPrimitive.acceptVisitor(PrimitiveVisitor visitor); 12 }}}


