Skip to content

Commit 71e6e71

Browse files
committed
Javadoc
1 parent d691342 commit 71e6e71

File tree

1 file changed

+36
-36
lines changed

1 file changed

+36
-36
lines changed

src/main/java/org/apache/commons/scxml2/io/SCXMLReader.java

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -897,7 +897,7 @@ public static SCXML read(final URL scxmlURL, final Configuration configuration)
897897
}
898898

899899
/**
900-
* Read the contents of this <assign> element.
900+
* Reads the contents of this <assign> element.
901901
*
902902
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
903903
* @param configuration The {@link Configuration} to use while parsing.
@@ -960,7 +960,7 @@ private static String readAV(final XMLStreamReader reader, final String attrLoca
960960
}
961961

962962
/**
963-
* Read the following body contents into a String.
963+
* Reads the following body contents into a String.
964964
*
965965
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
966966
* @return The body content read into a String.
@@ -1018,7 +1018,7 @@ private static Boolean readBooleanAV(final XMLStreamReader reader, final String
10181018
}
10191019

10201020
/**
1021-
* Read the contents of this <cancel> element.
1021+
* Reads the contents of this <cancel> element.
10221022
*
10231023
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
10241024
* @param configuration The {@link Configuration} to use while parsing.
@@ -1051,7 +1051,7 @@ private static void readCancel(final XMLStreamReader reader, final Configuration
10511051
}
10521052

10531053
/**
1054-
* Read the contents of this <content> element.
1054+
* Reads the contents of this <content> element.
10551055
*
10561056
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
10571057
* @param configuration The {@link Configuration} to use while parsing.
@@ -1074,7 +1074,7 @@ private static void readContent(final XMLStreamReader reader, final Configuratio
10741074
}
10751075

10761076
/**
1077-
* Read the contents of this custom action.
1077+
* Reads the contents of this custom action.
10781078
*
10791079
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
10801080
* @param configuration The {@link Configuration} to use while parsing.
@@ -1169,7 +1169,7 @@ private static void readCustomAction(final XMLStreamReader reader, final Configu
11691169
}
11701170

11711171
/**
1172-
* Read the contents of this <data> element.
1172+
* Reads the contents of this <data> element.
11731173
*
11741174
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
11751175
* @param configuration The {@link Configuration} to use while parsing.
@@ -1200,7 +1200,7 @@ private static void readData(final XMLStreamReader reader, final Configuration c
12001200
}
12011201

12021202
/**
1203-
* Read the contents of this <datamodel> element.
1203+
* Reads the contents of this <datamodel> element.
12041204
*
12051205
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
12061206
* @param configuration The {@link Configuration} to use while parsing.
@@ -1245,7 +1245,7 @@ private static void readDatamodel(final XMLStreamReader reader, final Configurat
12451245
* Private utility functions for reading the SCXML document.
12461246
*/
12471247
/**
1248-
* Read the SCXML document through the {@link XMLStreamReader}.
1248+
* Reads the SCXML document through the {@link XMLStreamReader}.
12491249
*
12501250
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
12511251
* @param configuration The {@link Configuration} to use while parsing.
@@ -1284,7 +1284,7 @@ private static SCXML readDocument(final XMLStreamReader reader, final Configurat
12841284
}
12851285

12861286
/**
1287-
* Read the contents of this <donedata> element.
1287+
* Reads the contents of this <donedata> element.
12881288
*
12891289
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
12901290
* @param configuration The {@link Configuration} to use while parsing.
@@ -1331,7 +1331,7 @@ private static void readDoneData(final XMLStreamReader reader, final Configurati
13311331
}
13321332

13331333
/**
1334-
* Read the current element into a DOM {@link Element}.
1334+
* Reads the current element into a DOM {@link Element}.
13351335
*
13361336
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
13371337
* @return The parsed content as a DOM {@link Element}.
@@ -1414,7 +1414,7 @@ private static Element readElement(final XMLStreamReader reader)
14141414
}
14151415

14161416
/**
1417-
* Read the contents of this <else> element.
1417+
* Reads the contents of this <else> element.
14181418
*
14191419
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
14201420
* @param executable The parent {@link Executable} for this action.
@@ -1431,7 +1431,7 @@ private static void readElse(final XMLStreamReader reader, final Executable exec
14311431
}
14321432

14331433
/**
1434-
* Read the contents of this <elseif> element.
1434+
* Reads the contents of this <elseif> element.
14351435
*
14361436
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
14371437
* @param executable The parent {@link Executable} for this action.
@@ -1449,7 +1449,7 @@ private static void readElseIf(final XMLStreamReader reader, final Executable ex
14491449
}
14501450

14511451
/**
1452-
* Read this set of executable content elements.
1452+
* Reads this set of executable content elements.
14531453
*
14541454
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
14551455
* @param configuration The {@link Configuration} to use while parsing.
@@ -1557,7 +1557,7 @@ private static void readExecutableContext(final XMLStreamReader reader, final Co
15571557
}
15581558

15591559
/**
1560-
* Read the contents of this <final> element.
1560+
* Reads the contents of this <final> element.
15611561
*
15621562
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
15631563
* @param configuration The {@link Configuration} to use while parsing.
@@ -1614,7 +1614,7 @@ private static void readFinal(final XMLStreamReader reader, final Configuration
16141614
}
16151615

16161616
/**
1617-
* Read the contents of this <finalize> element.
1617+
* Reads the contents of this <finalize> element.
16181618
*
16191619
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
16201620
* @param configuration The {@link Configuration} to use while parsing.
@@ -1635,7 +1635,7 @@ private static void readFinalize(final XMLStreamReader reader, final Configurati
16351635
}
16361636

16371637
/**
1638-
* Read the contents of this <foreach> element.
1638+
* Reads the contents of this <foreach> element.
16391639
*
16401640
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
16411641
* @param configuration The {@link Configuration} to use while parsing.
@@ -1663,7 +1663,7 @@ private static void readForeach(final XMLStreamReader reader, final Configuratio
16631663
}
16641664

16651665
/**
1666-
* Read the contents of the initial <script> element.
1666+
* Reads the contents of the initial <script> element.
16671667
* @see <a href="https://www.w3.org/TR/2015/REC-scxml-20150901/#scxml">
16681668
* https://www.w3.org/TR/2015/REC-scxml-20150901/#scxml<a> section 3.2.2
16691669
*
@@ -1682,7 +1682,7 @@ private static void readGlobalScript(final XMLStreamReader reader, final Configu
16821682
}
16831683

16841684
/**
1685-
* Read the contents of this &lt;history&gt; element.
1685+
* Reads the contents of this &lt;history&gt; element.
16861686
*
16871687
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
16881688
* @param configuration The {@link Configuration} to use while parsing.
@@ -1723,7 +1723,7 @@ private static void readHistory(final XMLStreamReader reader, final Configuratio
17231723
}
17241724

17251725
/**
1726-
* Read the contents of this &lt;if&gt; element.
1726+
* Reads the contents of this &lt;if&gt; element.
17271727
*
17281728
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
17291729
* @param configuration The {@link Configuration} to use while parsing.
@@ -1767,7 +1767,7 @@ private static void readInExternalTargets(final SCXML parent, final EnterableSta
17671767
}
17681768

17691769
/**
1770-
* Read the contents of this &lt;initial&gt; element.
1770+
* Reads the contents of this &lt;initial&gt; element.
17711771
*
17721772
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
17731773
* @param configuration The {@link Configuration} to use while parsing.
@@ -1841,7 +1841,7 @@ private static SCXML readInternal(final Configuration configuration, final URL s
18411841
}
18421842

18431843
/**
1844-
* Read the contents of this &lt;invoke&gt; element.
1844+
* Reads the contents of this &lt;invoke&gt; element.
18451845
*
18461846
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
18471847
* @param configuration The {@link Configuration} to use while parsing.
@@ -1898,7 +1898,7 @@ private static void readInvoke(final XMLStreamReader reader, final Configuration
18981898
}
18991899

19001900
/**
1901-
* Read the contents of this &lt;log&gt; element.
1901+
* Reads the contents of this &lt;log&gt; element.
19021902
*
19031903
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
19041904
* @param executable The parent {@link Executable} for this action.
@@ -1921,7 +1921,7 @@ private static void readLog(final XMLStreamReader reader, final Executable execu
19211921
}
19221922

19231923
/**
1924-
* Read the current active namespace declarations.
1924+
* Reads the current active namespace declarations.
19251925
*
19261926
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
19271927
* @return the map of active namespace declarations, null if none defined
@@ -1938,7 +1938,7 @@ private static Map<String, String> readNamespaces(final XMLStreamReader reader)
19381938
}
19391939

19401940
/**
1941-
* Read the contents of this &lt;onentry&gt; element.
1941+
* Reads the contents of this &lt;onentry&gt; element.
19421942
*
19431943
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
19441944
* @param configuration The {@link Configuration} to use while parsing.
@@ -1958,7 +1958,7 @@ private static void readOnEntry(final XMLStreamReader reader, final Configuratio
19581958
}
19591959

19601960
/**
1961-
* Read the contents of this &lt;onexit&gt; element.
1961+
* Reads the contents of this &lt;onexit&gt; element.
19621962
*
19631963
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
19641964
* @param configuration The {@link Configuration} to use while parsing.
@@ -1993,7 +1993,7 @@ else if (id.startsWith(SCXML.GENERATED_TT_ID_PREFIX)) {
19931993
}
19941994

19951995
/**
1996-
* Read the contents of this &lt;parallel&gt; element.
1996+
* Reads the contents of this &lt;parallel&gt; element.
19971997
*
19981998
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
19991999
* @param configuration The {@link Configuration} to use while parsing.
@@ -2085,7 +2085,7 @@ private static void readParallel(final XMLStreamReader reader, final Configurati
20852085
}
20862086

20872087
/**
2088-
* Read the contents of this &lt;param&gt; element.
2088+
* Reads the contents of this &lt;param&gt; element.
20892089
*
20902090
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
20912091
* @param configuration The {@link Configuration} to use while parsing.
@@ -2120,7 +2120,7 @@ else if (location == null) {
21202120
}
21212121

21222122
/**
2123-
* Read and parse the body of a {@link ParsedValueContainer} element.
2123+
* Reads and parse the body of a {@link ParsedValueContainer} element.
21242124
*
21252125
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
21262126
* @param configuration The {@link Configuration} to use while parsing.
@@ -2188,7 +2188,7 @@ else if (children.getLength() == 1 && (cdata || child.getNodeType() == Node.TEXT
21882188
}
21892189

21902190
/**
2191-
* Read the contents of this &lt;raise&gt; element.
2191+
* Reads the contents of this &lt;raise&gt; element.
21922192
*
21932193
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
21942194
* @param configuration The {@link Configuration} to use while parsing.
@@ -2240,7 +2240,7 @@ private static String readRequiredAV(final XMLStreamReader reader, final String
22402240
}
22412241

22422242
/**
2243-
* Read the contents of this &lt;script&gt; element.
2243+
* Reads the contents of this &lt;script&gt; element.
22442244
*
22452245
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
22462246
* @param configuration The {@link Configuration} to use while parsing.
@@ -2271,7 +2271,7 @@ private static Script readScript(final XMLStreamReader reader, final Configurati
22712271
}
22722272

22732273
/**
2274-
* Read the contents of this &lt;script&gt; element.
2274+
* Reads the contents of this &lt;script&gt; element.
22752275
*
22762276
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
22772277
* @param configuration The {@link Configuration} to use while parsing.
@@ -2293,7 +2293,7 @@ private static void readScript(final XMLStreamReader reader, final Configuration
22932293
}
22942294

22952295
/**
2296-
* Read the contents of this &lt;scxml&gt; element.
2296+
* Reads the contents of this &lt;scxml&gt; element.
22972297
*
22982298
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
22992299
* @param configuration The {@link Configuration} to use while parsing.
@@ -2370,7 +2370,7 @@ private static void readSCXML(final XMLStreamReader reader, final Configuration
23702370
}
23712371

23722372
/**
2373-
* Read the contents of this &lt;send&gt; element.
2373+
* Reads the contents of this &lt;send&gt; element.
23742374
*
23752375
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
23762376
* @param configuration The {@link Configuration} to use while parsing.
@@ -2485,7 +2485,7 @@ private static void readSend(final XMLStreamReader reader, final Configuration c
24852485
}
24862486

24872487
/**
2488-
* Read the contents of this simple &lt;transition&gt; element.
2488+
* Reads the contents of this simple &lt;transition&gt; element.
24892489
*
24902490
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
24912491
* @param configuration The {@link Configuration} to use while parsing.
@@ -2516,7 +2516,7 @@ private static SimpleTransition readSimpleTransition(final XMLStreamReader reade
25162516
}
25172517

25182518
/**
2519-
* Read the contents of this &lt;state&gt; element.
2519+
* Reads the contents of this &lt;state&gt; element.
25202520
*
25212521
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
25222522
* @param configuration The {@link Configuration} to use while parsing.
@@ -2618,7 +2618,7 @@ private static void readState(final XMLStreamReader reader, final Configuration
26182618
}
26192619

26202620
/**
2621-
* Read the contents of this &lt;transition&gt; element.
2621+
* Reads the contents of this &lt;transition&gt; element.
26222622
*
26232623
* @param reader The {@link XMLStreamReader} providing the SCXML document to parse.
26242624
* @param configuration The {@link Configuration} to use while parsing.

0 commit comments

Comments
 (0)