diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2019-12-01 00:07:48 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2019-12-01 00:07:48 +0000 |
commit | 5f28881a3574b5e7999a73200afa32eddfd07295 (patch) | |
tree | d20b9a90c0d1d725aec11935b2f8c5507134d526 /src/examples | |
parent | b4b661acc1538933aba0b9aecb9c86dfbf81fe12 (diff) | |
download | poi-5f28881a3574b5e7999a73200afa32eddfd07295.tar.gz poi-5f28881a3574b5e7999a73200afa32eddfd07295.zip |
change package.html to package-info.java
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1870655 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/examples')
-rw-r--r-- | src/examples/src/org/apache/poi/hssf/view/brush/package-info.java (renamed from src/examples/src/org/apache/poi/hssf/view/brush/package.html) | 17 | ||||
-rw-r--r-- | src/examples/src/org/apache/poi/ss/examples/html/package-info.java (renamed from src/examples/src/org/apache/poi/ss/examples/html/package.html) | 21 |
2 files changed, 14 insertions, 24 deletions
diff --git a/src/examples/src/org/apache/poi/hssf/view/brush/package.html b/src/examples/src/org/apache/poi/hssf/view/brush/package-info.java index d9819fb669..cf71cf6a13 100644 --- a/src/examples/src/org/apache/poi/hssf/view/brush/package.html +++ b/src/examples/src/org/apache/poi/hssf/view/brush/package-info.java @@ -1,6 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> -<!-- - ==================================================================== +/* ==================================================================== 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. @@ -15,12 +13,9 @@ 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. - ==================================================================== ---> -<html> +==================================================================== */ -<body> -This package contains some brushes that are used when drawing borders for Excel -cells. -</body> -</html> +/** + * This package contains some brushes that are used when drawing borders for Excel cells. + */ +package org.apache.poi.hssf.view.brush;
\ No newline at end of file diff --git a/src/examples/src/org/apache/poi/ss/examples/html/package.html b/src/examples/src/org/apache/poi/ss/examples/html/package-info.java index 1c8e6af5c4..11b5fd5914 100644 --- a/src/examples/src/org/apache/poi/ss/examples/html/package.html +++ b/src/examples/src/org/apache/poi/ss/examples/html/package-info.java @@ -1,6 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> -<!-- - ==================================================================== +/* ==================================================================== 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. @@ -15,13 +13,10 @@ 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. - ==================================================================== ---> -<html> -<head> -</head> -<body> -This package contains an example that uses POI to convert a workbook into -an HTML representation of the data. It can use both XSSF and HSSF workbooks. -</body> -</html> +==================================================================== */ + +/** + * This package contains an example that uses POI to convert a workbook into + * an HTML representation of the data. It can use both XSSF and HSSF workbooks. + */ +package org.apache.poi.ss.examples.html;
\ No newline at end of file |