This is an automated email from the ASF dual-hosted git repository.

jamesbognar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git


The following commit(s) were added to refs/heads/master by this push:
     new f21df52  Javadocs
f21df52 is described below

commit f21df52e3347d71ada205c6be0685f788044fc59
Author: JamesBognar <jamesbog...@apache.org>
AuthorDate: Thu Sep 13 20:13:58 2018 -0400

    Javadocs
---
 .../org/apache/juneau/dto/cognos/package-info.java |  3 ++
 .../java/org/apache/juneau/dto/cognos/package.html | 58 ++++++++++++++++++++++
 2 files changed, 61 insertions(+)

diff --git 
a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/cognos/package-info.java
 
b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/cognos/package-info.java
index 484563d..4c61930 100644
--- 
a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/cognos/package-info.java
+++ 
b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/cognos/package-info.java
@@ -12,6 +12,9 @@
 // 
***************************************************************************************************************************
 // XML namespaces used in this package
 @XmlSchema(prefix="cognos", 
namespace="http://developer.cognos.com/schemas/xmldata/1/";)
+/**
+ * Cognos Data Transfer Objects
+ */
 package org.apache.juneau.dto.cognos;
 import org.apache.juneau.xml.annotation.*;
 
diff --git 
a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/cognos/package.html
 
b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/cognos/package.html
new file mode 100644
index 0000000..8c55743
--- /dev/null
+++ 
b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/cognos/package.html
@@ -0,0 +1,58 @@
+<!DOCTYPE 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.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the "License"); you may not 
use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *  
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *  
+ * Unless required by applicable law or agreed to in writing, software 
distributed under the License is distributed on an
+ * "AS IS" BASIS, 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>
+       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+       <style type="text/css">
+               /* For viewing in Page Designer */
+               @IMPORT url("../../../../../../../javadoc.css");
+
+               /* For viewing in REST interface */
+               @IMPORT url("../htdocs/javadoc.css");
+               body { 
+                       margin: 20px; 
+               }       
+       </style>
+       <script>
+               /* Replace all @code and @link tags. */ 
+               window.onload = function() {
+                       document.body.innerHTML = 
document.body.innerHTML.replace(/\{\@code ([^\}]+)\}/g, '<code>$1</code>');
+                       document.body.innerHTML = 
document.body.innerHTML.replace(/\{\@link (([^\}]+)\.)?([^\.\}]+)\}/g, 
'<code>$3</code>');
+               }
+       </script>
+</head>
+<body>
+<p>Cognos Data Transfer Objects</p>
+<script>
+       function toggle(x) {
+               var div = x.nextSibling;
+               while (div != null && div.nodeType != 1)
+                       div = div.nextSibling;
+               if (div != null) {
+                       var d = div.style.display;
+                       if (d == 'block' || d == '') {
+                               div.style.display = 'none';
+                               x.className += " closed";
+                       } else {
+                               div.style.display = 'block';
+                               x.className = 
x.className.replace(/(?:^|\s)closed(?!\S)/g , '' );
+                       }
+               }
+       }
+</script>
+</body>
+</html>
\ No newline at end of file

Reply via email to