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
commit 569cd0d5c5086fa5b10d76b02afb4787da391c19 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Mar 19 16:26:29 2023 -0400 Javadoc: Convert package.html to package-info.java --- .../semantics/{package.html => package-info.java} | 45 ++++++++++------------ 1 file changed, 20 insertions(+), 25 deletions(-) diff --git a/src/main/java/org/apache/commons/scxml2/semantics/package.html b/src/main/java/org/apache/commons/scxml2/semantics/package-info.java similarity index 59% rename from src/main/java/org/apache/commons/scxml2/semantics/package.html rename to src/main/java/org/apache/commons/scxml2/semantics/package-info.java index 78e881c..83e3ec8 100644 --- a/src/main/java/org/apache/commons/scxml2/semantics/package.html +++ b/src/main/java/org/apache/commons/scxml2/semantics/package-info.java @@ -1,5 +1,4 @@ -<html> -<!-- +/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. @@ -14,27 +13,23 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ---> -<head> -</head> -<body> + */ - <p>A collection of classes responsible for implementations of the - <code>org.apache.commons.scxml2.SCXMLSemantics</code> interface.</p> - - <p>Some possible semantic interpretations are, for example:</p> - - <ul> - <li>STATEMATE - <li>RHAPSODY - <li>ROOMCharts - <li>UML 1.5 - <li>UML 2.0 - </ul> - - <p>Specific semantics can be created by subclassing - <code>org.apache.commons.scxml2.semantics.SCXMLSemanticsImpl</code>, - which is the default implementation used.</p> - -</body> -</html> +/** + * A collection of classes responsible for implementations of the <code>org.apache.commons.scxml2.SCXMLSemantics</code> interface. + * <p> + * Some possible semantic interpretations are, for example: + * </p> + * <ul> + * <li>STATEMATE + * <li>RHAPSODY + * <li>ROOMCharts + * <li>UML 1.5 + * <li>UML 2.0 + * </ul> + * <p> + * Specific semantics can be created by subclassing <code>org.apache.commons.scxml2.semantics.SCXMLSemanticsImpl</code>, which is the default implementation + * used. + * </p> + */ +package org.apache.commons.scxml2.semantics;