This is an automated email from the ASF dual-hosted git repository.
garydgregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-scxml.git
The following commit(s) were added to refs/heads/master by this push:
new 063f0384 Javadoc
063f0384 is described below
commit 063f03849360c9e84e4ed6d3f3050c2f467a24df
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Aug 2 17:12:34 2026 -0400
Javadoc
---
.../java/org/apache/commons/scxml2/SCInstanceObjectInputStream.java | 4 ++--
src/main/java/org/apache/commons/scxml2/io/ContentParser.java | 6 +++---
src/main/java/org/apache/commons/scxml2/test/StandaloneUtils.java | 2 +-
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git
a/src/main/java/org/apache/commons/scxml2/SCInstanceObjectInputStream.java
b/src/main/java/org/apache/commons/scxml2/SCInstanceObjectInputStream.java
index 84da7890..3b806f8f 100644
--- a/src/main/java/org/apache/commons/scxml2/SCInstanceObjectInputStream.java
+++ b/src/main/java/org/apache/commons/scxml2/SCInstanceObjectInputStream.java
@@ -38,7 +38,7 @@ public class SCInstanceObjectInputStream extends
ObjectInputStream {
*
* @param osc An instance of class ObjectStreamClass
* @return A Class object corresponding to osc
- * @throws IOException if an I/O error occurs while reading the
instance of class ObjectStreamClass
+ * @throws IOException Thrown if an I/O error occurs while reading the
instance of class ObjectStreamClass
* @throws ClassNotFoundException if the class is not found while
reading the instance of class ObjectStreamClass
*/
Class resolveClass(ObjectStreamClass osc) throws IOException,
ClassNotFoundException;
@@ -53,7 +53,7 @@ public class SCInstanceObjectInputStream extends
ObjectInputStream {
* Default constructor
*
* @param in Inputstream to use
- * @throws IOException if an I/O error occurs while reading the stream
+ * @throws IOException Thrown if an I/O error occurs while reading the
stream
*/
public SCInstanceObjectInputStream(final InputStream in) throws
IOException {
super(in);
diff --git a/src/main/java/org/apache/commons/scxml2/io/ContentParser.java
b/src/main/java/org/apache/commons/scxml2/io/ContentParser.java
index fb89667d..875364ba 100644
--- a/src/main/java/org/apache/commons/scxml2/io/ContentParser.java
+++ b/src/main/java/org/apache/commons/scxml2/io/ContentParser.java
@@ -219,7 +219,7 @@ public class ContentParser {
*
* @param xmlString XML String to parse
* @return document element
- * @throws IOException if IO error occurs while parsing XML
+ * @throws IOException Thrown if IO error occurs while parsing XML
*/
public Node parseXml(final String xmlString) throws IOException {
Document doc;
@@ -236,7 +236,7 @@ public class ContentParser {
*
* @param jsonObject object to transform
* @return json string
- * @throws IOException if IO error occurs while serializing it to JSON
+ * @throws IOException Thrown if IO error occurs while serializing it to
JSON
*/
public String toJson(final Object jsonObject) throws IOException {
return jsonObjectMapper.writeValueAsString(jsonObject);
@@ -247,7 +247,7 @@ public class ContentParser {
*
* @param node node to transform
* @return XML string
- * @throws IOException if IO error occurs while serializing node to XML
+ * @throws IOException Thrown if IO error occurs while serializing node to
XML
*/
public String toXml(final Node node) throws IOException {
try {
diff --git a/src/main/java/org/apache/commons/scxml2/test/StandaloneUtils.java
b/src/main/java/org/apache/commons/scxml2/test/StandaloneUtils.java
index 86fa8f96..1a661ffd 100644
--- a/src/main/java/org/apache/commons/scxml2/test/StandaloneUtils.java
+++ b/src/main/java/org/apache/commons/scxml2/test/StandaloneUtils.java
@@ -137,7 +137,7 @@ public final class StandaloneUtils {
/**
* @param uri An absolute or relative URL
* @return {@link String} canonical URL (absolute)
- * @throws IOException if a relative URL cannot be resolved
+ * @throws IOException Thrown if a relative URL cannot be resolved
* to a local file
*/
private static String getCanonicalURI(final String uri)