This is an automated email from the ASF dual-hosted git repository. ggregory 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 c7d1784 Javadoc @see tags do not need to use a FQCN for classes in java.lang c7d1784 is described below commit c7d17845d6ffde45c6b147da9c36fc838ea505c1 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Aug 29 07:21:42 2022 -0400 Javadoc @see tags do not need to use a FQCN for classes in java.lang --- .../java/org/apache/commons/scxml2/SCXMLExpressionException.java | 8 ++++---- src/main/java/org/apache/commons/scxml2/TriggerEvent.java | 6 +++--- src/main/java/org/apache/commons/scxml2/env/SimpleContext.java | 6 +++--- src/main/java/org/apache/commons/scxml2/env/URLResolver.java | 4 ++-- .../java/org/apache/commons/scxml2/invoke/InvokerException.java | 6 +++--- src/main/java/org/apache/commons/scxml2/model/ModelException.java | 8 ++++---- 6 files changed, 19 insertions(+), 19 deletions(-) diff --git a/src/main/java/org/apache/commons/scxml2/SCXMLExpressionException.java b/src/main/java/org/apache/commons/scxml2/SCXMLExpressionException.java index b05b54b..7461fa6 100644 --- a/src/main/java/org/apache/commons/scxml2/SCXMLExpressionException.java +++ b/src/main/java/org/apache/commons/scxml2/SCXMLExpressionException.java @@ -29,13 +29,13 @@ public class SCXMLExpressionException extends Exception { private static final long serialVersionUID = 1L; /** - * @see java.lang.Exception#Exception() + * @see Exception#Exception() */ public SCXMLExpressionException() { } /** - * @see java.lang.Exception#Exception(java.lang.String) + * @see Exception#Exception(String) * @param message The error message */ public SCXMLExpressionException(final String message) { @@ -43,7 +43,7 @@ public class SCXMLExpressionException extends Exception { } /** - * @see java.lang.Exception#Exception(java.lang.Throwable) + * @see Exception#Exception(Throwable) * @param cause The cause */ public SCXMLExpressionException(final Throwable cause) { @@ -51,7 +51,7 @@ public class SCXMLExpressionException extends Exception { } /** - * @see java.lang.Exception#Exception(String, Throwable) + * @see Exception#Exception(String, Throwable) * @param message The error message * @param cause The cause */ diff --git a/src/main/java/org/apache/commons/scxml2/TriggerEvent.java b/src/main/java/org/apache/commons/scxml2/TriggerEvent.java index c58f6da..7e7972e 100644 --- a/src/main/java/org/apache/commons/scxml2/TriggerEvent.java +++ b/src/main/java/org/apache/commons/scxml2/TriggerEvent.java @@ -162,7 +162,7 @@ public class TriggerEvent implements Serializable { /** * Define an equals operator for TriggerEvent. * - * @see java.lang.Object#equals(java.lang.Object) + * @see Object#equals(Object) */ @Override public boolean equals(final Object obj) { @@ -183,7 +183,7 @@ public class TriggerEvent implements Serializable { /** * Returns a string representation of this TriggerEvent object. * - * @see java.lang.Object#toString() + * @see Object#toString() */ @Override public String toString() { @@ -211,7 +211,7 @@ public class TriggerEvent implements Serializable { /** * Returns the hash code for this TriggerEvent object. * - * @see java.lang.Object#hashCode() + * @see Object#hashCode() */ @Override public int hashCode() { diff --git a/src/main/java/org/apache/commons/scxml2/env/SimpleContext.java b/src/main/java/org/apache/commons/scxml2/env/SimpleContext.java index 68a1339..c2aef49 100644 --- a/src/main/java/org/apache/commons/scxml2/env/SimpleContext.java +++ b/src/main/java/org/apache/commons/scxml2/env/SimpleContext.java @@ -100,7 +100,7 @@ public class SimpleContext implements Context, Serializable { * * @param name The variable name * @return Object The variable value - * @see org.apache.commons.scxml2.Context#get(java.lang.String) + * @see org.apache.commons.scxml2.Context#get(String) */ public Object get(final String name) { final Object localValue = getVars().get(name); @@ -118,7 +118,7 @@ public class SimpleContext implements Context, Serializable { * * @param name The variable name * @return boolean true if this variable exists - * @see org.apache.commons.scxml2.Context#has(java.lang.String) + * @see org.apache.commons.scxml2.Context#has(String) */ public boolean has(final String name) { return (hasLocal(name) || (parent != null && parent.has(name))); @@ -129,7 +129,7 @@ public class SimpleContext implements Context, Serializable { * * @param name The variable name * @return boolean true if this variable exists - * @see org.apache.commons.scxml2.Context#hasLocal(java.lang.String) + * @see org.apache.commons.scxml2.Context#hasLocal(String) */ public boolean hasLocal(final String name) { return (getVars().containsKey(name)); diff --git a/src/main/java/org/apache/commons/scxml2/env/URLResolver.java b/src/main/java/org/apache/commons/scxml2/env/URLResolver.java index 0b20dc5..0296d4a 100644 --- a/src/main/java/org/apache/commons/scxml2/env/URLResolver.java +++ b/src/main/java/org/apache/commons/scxml2/env/URLResolver.java @@ -51,7 +51,7 @@ public class URLResolver implements PathResolver, Serializable { /** * Uses URL(URL, String) constructor to combine URL's. - * @see org.apache.commons.scxml2.PathResolver#resolvePath(java.lang.String) + * @see org.apache.commons.scxml2.PathResolver#resolvePath(String) */ public String resolvePath(final String ctxPath) { URL combined; @@ -65,7 +65,7 @@ public class URLResolver implements PathResolver, Serializable { } /** - * @see org.apache.commons.scxml2.PathResolver#getResolver(java.lang.String) + * @see org.apache.commons.scxml2.PathResolver#getResolver(String) */ public PathResolver getResolver(final String ctxPath) { URL combined; diff --git a/src/main/java/org/apache/commons/scxml2/invoke/InvokerException.java b/src/main/java/org/apache/commons/scxml2/invoke/InvokerException.java index 937e67f..12de1cb 100644 --- a/src/main/java/org/apache/commons/scxml2/invoke/InvokerException.java +++ b/src/main/java/org/apache/commons/scxml2/invoke/InvokerException.java @@ -29,7 +29,7 @@ public class InvokerException extends Exception { private static final long serialVersionUID = 1L; /** - * @see java.lang.Exception#Exception(java.lang.String) + * @see Exception#Exception(String) * @param message The error message */ public InvokerException(final String message) { @@ -37,7 +37,7 @@ public class InvokerException extends Exception { } /** - * @see java.lang.Exception#Exception(java.lang.Throwable) + * @see Exception#Exception(Throwable) * @param cause The cause */ public InvokerException(final Throwable cause) { @@ -45,7 +45,7 @@ public class InvokerException extends Exception { } /** - * @see java.lang.Exception#Exception(String, Throwable) + * @see Exception#Exception(String, Throwable) * @param message The error message * @param cause The cause */ diff --git a/src/main/java/org/apache/commons/scxml2/model/ModelException.java b/src/main/java/org/apache/commons/scxml2/model/ModelException.java index 687f57d..3cb8c4d 100644 --- a/src/main/java/org/apache/commons/scxml2/model/ModelException.java +++ b/src/main/java/org/apache/commons/scxml2/model/ModelException.java @@ -30,13 +30,13 @@ public class ModelException extends Exception { private static final long serialVersionUID = 1L; /** - * @see java.lang.Exception#Exception() + * @see Exception#Exception() */ public ModelException() { } /** - * @see java.lang.Exception#Exception(java.lang.String) + * @see Exception#Exception(String) * @param message the detail message */ public ModelException(final String message) { @@ -44,7 +44,7 @@ public class ModelException extends Exception { } /** - * @see java.lang.Exception#Exception(java.lang.Throwable) + * @see Exception#Exception(Throwable) * @param cause the cause */ public ModelException(final Throwable cause) { @@ -52,7 +52,7 @@ public class ModelException extends Exception { } /** - * @see java.lang.Exception#Exception(String, java.lang.Throwable) + * @see Exception#Exception(String, Throwable) * @param message the detail message * @param cause the cause */