Author: rdonkin
Date: Thu Apr 27 14:34:42 2006
New Revision: 397646
URL: http://svn.apache.org/viewcvs?rev=397646&view=rev
Log:
Fixed broken javadocs
Modified:
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/IntrospectionConfiguration.java
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/io/BeanWriter.java
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/io/read/MappingAction.java
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/schema/strategy/SchemaTypeNamingStrategy.java
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/strategy/DefaultIdStoringStrategy.java
Modified:
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/IntrospectionConfiguration.java
URL:
http://svn.apache.org/viewcvs/jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/IntrospectionConfiguration.java?rev=397646&r1=397645&r2=397646&view=diff
==============================================================================
---
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/IntrospectionConfiguration.java
(original)
+++
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/IntrospectionConfiguration.java
Thu Apr 27 14:34:42 2006
@@ -253,7 +253,7 @@
}
/**
- * <p>Should existing BeanInfo classes be ignored by
<code>java.reflect.Introspector</code></p>
+ * <p>Should existing BeanInfo classes be ignored by
<code>java.reflect.Introspector</code>.</p>
* <p>
* Default is false.
* </p>
Modified:
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/io/BeanWriter.java
URL:
http://svn.apache.org/viewcvs/jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/io/BeanWriter.java?rev=397646&r1=397645&r2=397646&view=diff
==============================================================================
---
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/io/BeanWriter.java
(original)
+++
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/io/BeanWriter.java
Thu Apr 27 14:34:42 2006
@@ -262,7 +262,7 @@
/**
* Sets the initial indent level used for pretty print indents
- * @param indent use this <code>int</code> to start with
+ * @param initialIndentLevel use this <code>int</code> to start with
*/
public void setInitialIndentLevel(int initialIndentLevel) {
this.initialIndentLevel = initialIndentLevel;
Modified:
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/io/read/MappingAction.java
URL:
http://svn.apache.org/viewcvs/jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/io/read/MappingAction.java?rev=397646&r1=397645&r2=397646&view=diff
==============================================================================
---
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/io/read/MappingAction.java
(original)
+++
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/io/read/MappingAction.java
Thu Apr 27 14:34:42 2006
@@ -112,7 +112,7 @@
}
/**
- * @see
org.apache.commons.betwixt.io.read.MappingAction#begin(java.lang.String,
java.lang.String, org.xml.sax.Attributes,
org.apache.commons.betwixt.io.read.ReadContext,
org.apache.commons.betwixt.XMLIntrospector)
+ * @see org.apache.commons.betwixt.io.read.MappingAction#begin(String,
String, Attributes, ReadContext)
*/
public MappingAction begin(
String namespace,
@@ -134,14 +134,14 @@
}
/**
- * @see
org.apache.commons.betwixt.io.read.MappingAction#body(java.lang.String,
org.apache.commons.betwixt.io.read.ReadContext,
org.apache.commons.betwixt.XMLIntrospector)
+ * @see MappingAction#body(String, ReadContext)
*/
public void body(String text, ReadContext context) throws Exception {
// do nothing
}
/**
- * @see
org.apache.commons.betwixt.io.read.MappingAction#end(org.apache.commons.betwixt.io.read.ReadContext,
org.apache.commons.digester.Digester,
org.apache.commons.betwixt.XMLIntrospector)
+ * @see MappingAction#end(ReadContext)
*/
public void end(ReadContext context) throws Exception {
// do nothing
Modified:
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/schema/strategy/SchemaTypeNamingStrategy.java
URL:
http://svn.apache.org/viewcvs/jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/schema/strategy/SchemaTypeNamingStrategy.java?rev=397646&r1=397645&r2=397646&view=diff
==============================================================================
---
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/schema/strategy/SchemaTypeNamingStrategy.java
(original)
+++
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/schema/strategy/SchemaTypeNamingStrategy.java
Thu Apr 27 14:34:42 2006
@@ -27,7 +27,7 @@
/**
* Names the schema type described.
* @param descriptor <code>ElementDescriptor</code> describing the element
- * @return
+ * @return the name of the schema
*/
public abstract String nameSchemaType(ElementDescriptor descriptor);
}
Modified:
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/strategy/DefaultIdStoringStrategy.java
URL:
http://svn.apache.org/viewcvs/jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/strategy/DefaultIdStoringStrategy.java?rev=397646&r1=397645&r2=397646&view=diff
==============================================================================
---
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/strategy/DefaultIdStoringStrategy.java
(original)
+++
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/strategy/DefaultIdStoringStrategy.java
Thu Apr 27 14:34:42 2006
@@ -24,7 +24,7 @@
* <p>Stores every ID that given to it into an internal <code>HashMap</code>
and
* returns it on request.
* </p><p>
- * [EMAIL PROTECTED] DefaultIdStoringStrategy(Map, Map)} allows the
implementations
+ * [EMAIL PROTECTED] #DefaultIdStoringStrategy(Map, Map)} allows the
implementations
* to be specified.
* For example, those who want to use identity (rather than equality)
* should pass a <code>IdentityHashMap</code> instance.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]