Author: tchemit Date: 2011-04-21 17:13:15 +0200 (Thu, 21 Apr 2011) New Revision: 2264 Url: http://nuiton.org/repositories/revision/jaxx/2264 Log: fix javadoc Modified: trunk/jaxx-compiler/src/main/java/jaxx/compiler/CompiledObject.java Modified: trunk/jaxx-compiler/src/main/java/jaxx/compiler/CompiledObject.java =================================================================== --- trunk/jaxx-compiler/src/main/java/jaxx/compiler/CompiledObject.java 2011-04-21 15:12:51 UTC (rev 2263) +++ trunk/jaxx-compiler/src/main/java/jaxx/compiler/CompiledObject.java 2011-04-21 15:13:15 UTC (rev 2264) @@ -205,7 +205,7 @@ * <p/> * To be useful, the object should be registered with a * <code>JAXXCompiler</code> using - * {@link JAXXCompiler#registerCompiledObject registerCompiledObject}. + * {@link JAXXCompiler#registerCompiledObject(CompiledObject)} . * * @param id the object's id * @param objectClass the object's class @@ -220,7 +220,7 @@ /** * Creates a new <code>CompiledObject</code>. To be useful, the object should be registered with a - * <code>JAXXCompiler</code> using {@link JAXXCompiler#registerCompiledObject registerCompiledObject}. + * <code>JAXXCompiler</code> using {@link JAXXCompiler#registerCompiledObject(CompiledObject)} . * * @param id the object's id * @param objectClass the object's class @@ -237,7 +237,7 @@ /** * Creates a new <code>CompiledObject</code>. To be useful, the object should be registered with a - * <code>JAXXCompiler</code> using {@link JAXXCompiler#registerCompiledObject registerCompiledObject}. + * <code>JAXXCompiler</code> using {@link JAXXCompiler#registerCompiledObject(CompiledObject)} . * * @param id the object's id * @param javaCode Java code referring to the object @@ -296,7 +296,7 @@ * identically-named object. * * @return <code>true</code> if this object is an override - * @see #setOverride + * @see #setOverride(boolean) */ public boolean isOverride() { return override; @@ -470,7 +470,7 @@ * parameters to pass to this object's constructor. * * @return the raw constructor params - * @see #setConstructorParams + * @see #setConstructorParams(String) */ public String getConstructorParams() { return constructorParams; @@ -542,7 +542,7 @@ * automatically appended to the end. * * @param code the code to add to the initialization block - * @see #getInitializationCode + * @see #getInitializationCode(JAXXCompiler) */ public void appendInitializationCode(String code) { if (!code.isEmpty()) { @@ -571,7 +571,7 @@ * * @param property the name of the property * @param value the property's value - * @see #getProperties + * @see #getProperties() */ public void addProperty(String property, String value) { properties.put(property, value); @@ -603,7 +603,7 @@ * Returns all properties which have been set for this object. * * @return a <code>Map</code> containing all properties defined for this object - * @see #addProperty + * @see #addProperty(String, String) */ public Map<?, ?>/*<String, String>*/ getProperties() { return properties; @@ -618,7 +618,7 @@ * @param listenerMethod the method (in the listener class) which is called when the event is fired * @param code the Java code for the listenerMethod's body * @param compiler the current <code>JAXXCompiler</code> - * @see #getInitializationCode + * @see #getInitializationCode(EventHandler, JAXXCompiler) */ public void addEventHandler(String eventId, MethodDescriptor addMethod,
participants (1)
-
tchemit@users.nuiton.org