Commit c023d42ebcaab8943760da7219843a7e087f7e9b
- Diff rendering mode:
- inline
- side by side
|   | |||
| 36 | 36 | ||
| 37 | 37 | /** | |
| 38 | 38 | * Creates an ID from a String. | |
| 39 | * @see {@link Long#Long(String)} | ||
| 40 | 39 | * @param a_id The ID, usually the value of the XML attribute <code>id</code>. | |
| 40 | * @see Long#Long(String) | ||
| 41 | 41 | */ | |
| 42 | 42 | public ID(String a_id) | |
| 43 | 43 | { |
|   | |||
| 8 | 8 | ||
| 9 | 9 | /** | |
| 10 | 10 | * Implentations of this type fetch {@link Node} objects from the {@link API}. | |
| 11 | * @see {@link API#getNodeFactory()} | ||
| 11 | * @see API#getNodeFactory() | ||
| 12 | 12 | * @author cdauth | |
| 13 | 13 | */ | |
| 14 | 14 | public interface NodeFactory extends VersionedItemFactory<Node> |
|   | |||
| 8 | 8 | ||
| 9 | 9 | /** | |
| 10 | 10 | * Implentations of this type fetch {@link Relation} objects from the {@link API}. | |
| 11 | * @see {@link API#getRelationFactory()} | ||
| 11 | * @see API#getRelationFactory() | ||
| 12 | 12 | * @author cdauth | |
| 13 | 13 | */ | |
| 14 | 14 | public interface RelationFactory extends VersionedItemFactory<Relation> |
|   | |||
| 37 | 37 | ||
| 38 | 38 | /** | |
| 39 | 39 | * Creates a Version from a String. | |
| 40 | * @see {@link Long#Long(String)} | ||
| 41 | 40 | * @param a_version The Version, usually the value of the XML attribute <code>version</code>. | |
| 41 | * @see Long#Long(String) | ||
| 42 | 42 | */ | |
| 43 | 43 | public Version(String a_version) | |
| 44 | 44 | { |
|   | |||
| 8 | 8 | ||
| 9 | 9 | /** | |
| 10 | 10 | * Implentations of this type fetch {@link Way} objects from the {@link API}. | |
| 11 | * @see {@link API#getWayFactory()} | ||
| 11 | * @see API#getWayFactory() | ||
| 12 | 12 | * @author cdauth | |
| 13 | 13 | */ | |
| 14 | 14 | public interface WayFactory extends VersionedItemFactory<Way> |
pom.xml
(6 / 0)
|   | |||
| 106 | 106 | <groupId>org.apache.maven.plugins</groupId> | |
| 107 | 107 | <artifactId>maven-javadoc-plugin</artifactId> | |
| 108 | 108 | <version>2.6.1</version> | |
| 109 | <configuration> | ||
| 110 | <links> | ||
| 111 | <link>http://java.sun.com/products/servlet/2.5/docs/servlet-2_5-mr2</link> | ||
| 112 | <link>http://tomcat.apache.org/tomcat-6.0-doc/api</link> | ||
| 113 | </links> | ||
| 114 | </configuration> | ||
| 109 | 115 | </plugin> | |
| 110 | 116 | </plugins> | |
| 111 | 117 |
|   | |||
| 441 | 441 | } | |
| 442 | 442 | ||
| 443 | 443 | /** | |
| 444 | * @see gettext(String) | ||
| 444 | * @see #gettext(String) | ||
| 445 | 445 | */ | |
| 446 | 446 | public String _(String a_message) | |
| 447 | 447 | { |
web/pom.xml
(5 / 0)
|   | |||
| 78 | 78 | <version>1.6.4</version> | |
| 79 | 79 | <scope>runtime</scope> | |
| 80 | 80 | </dependency> | |
| 81 | <dependency> | ||
| 82 | <groupId>org.apache.tomcat</groupId> | ||
| 83 | <artifactId>jasper</artifactId> | ||
| 84 | <version>6.0.26</version> | ||
| 85 | </dependency> | ||
| 81 | 86 | </dependencies> | |
| 82 | 87 | ||
| 83 | 88 | <build> |

