Commit c023d42ebcaab8943760da7219843a7e087f7e9b

Fixed some Javadoc.
  
3636
3737 /**
3838 * Creates an ID from a String.
39 * @see {@link Long#Long(String)}
4039 * @param a_id The ID, usually the value of the XML attribute <code>id</code>.
40 * @see Long#Long(String)
4141 */
4242 public ID(String a_id)
4343 {
  
88
99/**
1010 * Implentations of this type fetch {@link Node} objects from the {@link API}.
11 * @see {@link API#getNodeFactory()}
11 * @see API#getNodeFactory()
1212 * @author cdauth
1313 */
1414public interface NodeFactory extends VersionedItemFactory<Node>
  
88
99/**
1010 * Implentations of this type fetch {@link Relation} objects from the {@link API}.
11 * @see {@link API#getRelationFactory()}
11 * @see API#getRelationFactory()
1212 * @author cdauth
1313 */
1414public interface RelationFactory extends VersionedItemFactory<Relation>
  
3737
3838 /**
3939 * Creates a Version from a String.
40 * @see {@link Long#Long(String)}
4140 * @param a_version The Version, usually the value of the XML attribute <code>version</code>.
41 * @see Long#Long(String)
4242 */
4343 public Version(String a_version)
4444 {
  
88
99/**
1010 * Implentations of this type fetch {@link Way} objects from the {@link API}.
11 * @see {@link API#getWayFactory()}
11 * @see API#getWayFactory()
1212 * @author cdauth
1313 */
1414public interface WayFactory extends VersionedItemFactory<Way>
pom.xml
(6 / 0)
  
106106 <groupId>org.apache.maven.plugins</groupId>
107107 <artifactId>maven-javadoc-plugin</artifactId>
108108 <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>
109115 </plugin>
110116 </plugins>
111117
  
441441 }
442442
443443 /**
444 * @see gettext(String)
444 * @see #gettext(String)
445445 */
446446 public String _(String a_message)
447447 {
  
7878 <version>1.6.4</version>
7979 <scope>runtime</scope>
8080 </dependency>
81 <dependency>
82 <groupId>org.apache.tomcat</groupId>
83 <artifactId>jasper</artifactId>
84 <version>6.0.26</version>
85 </dependency>
8186 </dependencies>
8287
8388 <build>