Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/org/apache/xerces/impl/xpath/regex/REUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ else if (next == '^' && offset + 1 < len) {

/**
* Sample entry.
* <div>Usage: <KBD>org.apache.xerces.utils.regex.REUtil &lt;regex&gt; &lt;string&gt;</KBD></div>
* <p>Usage: <samp>org.apache.xerces.utils.regex.REUtil &lt;regex&gt; &lt;string&gt;</samp></p>
*/
public static void main(String[] argv) {
String pattern = null;
Expand Down
20 changes: 10 additions & 10 deletions src/org/apache/xerces/impl/xs/models/XSCMValidator.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,9 @@ public interface XSCMValidator {
/**
* The method corresponds to one transaction in the content model.
*
* @param elementName
* @param state Current state
* @param elementName the element's qualified name
* @param state current state of the content model
* @param subGroupHandler the substitution group handler
* @return element decl or wildcard decl that
* corresponds to the element from the Schema grammar
*/
Expand Down Expand Up @@ -94,14 +95,13 @@ public interface XSCMValidator {
* or <code>null</code> if no occurrence counting was being performed at the
* current state.</p>
*
* <p>If an array is returned it will have a length == 4 and will contain:
* <ul>
* <li>a[0] :: min occurs</li>
* <li>a[1] :: max occurs</li>
* <li>a[2] :: current value of the counter</li>
* <li>a[3] :: identifier for the repeating term</li>
* </ul>
* </p>
* <p>If an array is returned it will have a length == 4 and will contain:</p>
* <ul>
* <li>a[0] :: min occurs</li>
* <li>a[1] :: max occurs</li>
* <li>a[2] :: current value of the counter</li>
* <li>a[3] :: identifier for the repeating term</li>
* </ul>
*
* @param state the current state
* @return an array containing information about the current repeating term
Expand Down
3 changes: 2 additions & 1 deletion src/org/apache/xerces/xs/datatypes/XSDateTime.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@
* table shows the methods defined for various XML Schema 1.0 built-in types. 'X'
* marks whether a particular method is defined for a particular type. Accessing undefined
* methods may return unexpected values.
*
*
* <table border="1">
* <caption>Mappings between XML Schema 1.0 date-time related types and their supported accessors</caption>
* <tr>
* <td> XML Schema Datatype </td>
* <td> getYears() </td>
Expand Down