Skip to content

Commit

Permalink
Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Dec 14, 2023
1 parent 811ab98 commit 1f7843f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ private final class NodeBuilder
protected StringBuilder topText = new StringBuilder();

/**
* Constructor.
* Constructs a new instance.
* <p>
* Stores the content handler currently used by Digester so it can be reset when done, and initializes the DOM
* objects needed to build the node.
Expand Down Expand Up @@ -323,7 +323,7 @@ public NodeCreateRule()
}

/**
* Constructor. Creates an instance of this rule that will create a DOM {@link org.w3c.dom.Element Element}, but
* Constructs a new instance. Creates an instance of this rule that will create a DOM {@link org.w3c.dom.Element Element}, but
* lets you specify the JAXP {@code DocumentBuilder} that should be used when constructing the node tree.
*
* @param documentBuilder the JAXP {@code DocumentBuilder} to use
Expand All @@ -336,7 +336,7 @@ public NodeCreateRule( final DocumentBuilder documentBuilder )
// ----------------------------------------------------- Instance Variables

/**
* Constructor. Creates an instance of this rule that will create either a DOM {@link org.w3c.dom.Element Element}
* Constructs a new instance. Creates an instance of this rule that will create either a DOM {@link org.w3c.dom.Element Element}
* or a DOM {@link org.w3c.dom.DocumentFragment DocumentFragment}, depending on the value of the
* {@code nodeType} parameter.
*
Expand All @@ -353,7 +353,7 @@ public NodeCreateRule( final int nodeType )
}

/**
* Constructor. Creates an instance of this rule that will create either a DOM {@link org.w3c.dom.Element Element}
* Constructs a new instance. Creates an instance of this rule that will create either a DOM {@link org.w3c.dom.Element Element}
* or a DOM {@link org.w3c.dom.DocumentFragment DocumentFragment}, depending on the value of the
* {@code nodeType} parameter. This constructor lets you specify the JAXP {@code DocumentBuilder} that
* should be used when constructing the node tree.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public class Declaration
// ---------------------- constructors ----------------------------------

/**
* Constructor.
* Constructs a new instance.
*
* @param pluginClass The class of the object to be instantiated (will be load in the init method)
*/
Expand All @@ -81,7 +81,7 @@ public Declaration( final Class<?> pluginClass, final RuleLoader ruleLoader )
}

/**
* Constructor.
* Constructs a new instance.
*
* @param pluginClassName The name of the class of the object to be instantiated (will be load in the init method)
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class FinderFromMethod
/** See {@link #findLoader}. */
private final String methodAttr;

/** Constructor. */
/** Constructs a new instance. */
public FinderFromMethod()
{
this( DFLT_METHOD_ATTR );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public static RuleLoader loadRules( final Digester d, final Class<?> pluginClass
/** See {@link #findLoader}. */
private final String resourceAttr;

/** Constructor. */
/** Constructs a new instance. */
public FinderFromResource()
{
this( DFLT_RESOURCE_ATTR );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public static Method locateMethod( final Class<?> rulesClass, final String metho
private final Method rulesMethod;

/**
* Constructor.
* Constructs a new instance.
*
* @param rulesClass The target class
* @param rulesMethod The method has to be invoked
Expand All @@ -73,7 +73,7 @@ public LoaderFromClass( final Class<?> rulesClass, final Method rulesMethod )
}

/**
* Constructor.
* Constructs a new instance.
*
* @param rulesClass The target class
* @param methodName The method name has to be invoked
Expand Down

0 comments on commit 1f7843f

Please sign in to comment.