You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/03/19 20:27:17 UTC

[commons-scxml] 06/13: Javadoc: Convert package.html to package-info.java

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 343dbfe671f8c486e3b292ee879a9dc89631f4c5
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Mar 19 16:26:06 2023 -0400

    Javadoc: Convert package.html to package-info.java
---
 .../scxml2/env/{package.html => package-info.java} | 24 +++++++++-------------
 1 file changed, 10 insertions(+), 14 deletions(-)

diff --git a/src/main/java/org/apache/commons/scxml2/env/package.html b/src/main/java/org/apache/commons/scxml2/env/package-info.java
similarity index 74%
rename from src/main/java/org/apache/commons/scxml2/env/package.html
rename to src/main/java/org/apache/commons/scxml2/env/package-info.java
index 5b217c5..bb2785e 100644
--- a/src/main/java/org/apache/commons/scxml2/env/package.html
+++ b/src/main/java/org/apache/commons/scxml2/env/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,16 +13,13 @@
  * 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 that may be commonly used to bridge the
-     SCXML executor to the runtime environment.</p>
-     
-  <p>Various sub-packages contain specifics related to a particular
-     environment.</p>
-
-</body>
-</html>
+/**
+ * A collection of classes that may be commonly used to bridge the SCXML executor to the runtime environment.
+ *
+ * <p>
+ * Various sub-packages contain specifics related to a particular environment.
+ * </p>
+ */
+package org.apache.commons.scxml2.env;