Adding more testcases to Misc xgen
[aaf/authz.git] / misc / xgen / src / main / java / org / onap / aaf / misc / xgen / html / HTML4Gen.java
index dfab12c..34d798d 100644 (file)
-/**
- * ============LICENSE_START====================================================
- * org.onap.aaf
- * ===========================================================================
- * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
- * ===========================================================================
- * Licensed 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.
- * ============LICENSE_END====================================================
- *
- */
-
-package org.onap.aaf.misc.xgen.html;
-
-import java.io.Writer;
-
-import org.onap.aaf.misc.xgen.Mark;
-
-public class HTML4Gen extends HTMLGen {
-       private final static String DOCTYPE = 
-               /*
-               "<!DOCTYPE HTML PUBLIC " +
-               "\"-//W3C//DTD HTML 4.01 Transitional//EN\" " +
-               "\"http://www.w3.org/TR/html3/loose.dtd\">";
-               "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"" +
-               " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">";
-               */
-               "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"" +
-               " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">";
-
-       public HTML4Gen(Writer w) {
-               super(w);
-       }
-
-       @Override
-       public HTMLGen html(String ... attrib) {
-               forward.println(DOCTYPE);
-               return incr("html","xmlns=http://www.w3.org/1999/xhtml","xml:lang=en","lang=en");
-               
-       }
-
-       @Override
-       public Mark head() {
-               Mark head = new Mark("head");
-               incr(head);
-               return head;
-       }
-
-       @Override
-       public Mark body(String ... attrs) {
-               Mark body = new Mark("body");
-               incr(body,"body",attrs);
-               return body;
-       }
-       
-       @Override
-       public HTML4Gen charset(String charset) {
-               forward.append("<meta http-equiv=\"Content-type\" content=\"text.hml; charset=");
-               forward.append(charset);
-               forward.append("\">");
-               prettyln(forward);
-               return this;
-       }
-
-       @Override
-       public Mark header(String ... attribs) {
-               String[] a = new String[attribs.length+1];
-               a[0]="header";
-               System.arraycopy(attribs, 0, a, 1, attribs.length);
-               return divID(a);
-       }
-
-       @Override
-       public Mark footer(String ... attribs) {
-               String[] a = new String[attribs.length+1];
-               a[0]="footer";
-               System.arraycopy(attribs, 0, a, 1, attribs.length);
-               return divID(a);
-       }
-
-       @Override
-       public Mark section(String ... attribs) {
-               String[] a = new String[attribs.length+1];
-               a[0]="section";
-               System.arraycopy(attribs, 0, a, 1, attribs.length);
-               return divID(a);
-       }
-
-       @Override
-       public Mark article(String ... attribs) {
-               String[] a = new String[attribs.length+1];
-               a[0]="attrib";
-               System.arraycopy(attribs, 0, a, 1, attribs.length);
-               return divID(a);
-       }
-
-       @Override
-       public Mark aside(String ... attribs) {
-               String[] a = new String[attribs.length+1];
-               a[0]="aside";
-               System.arraycopy(attribs, 0, a, 1, attribs.length);
-               return divID(a);
-       }
-
-       @Override
-       public Mark nav(String ... attribs) {
-               String[] a = new String[attribs.length+1];
-               a[0]="nav";
-               System.arraycopy(attribs, 0, a, 1, attribs.length);
-               return divID(a);
-       }
-
-//     @Override
-//     protected void importCSS(Imports imports) {
-//             if(imports.css.size()==1) {
-//                     cssInline(imports.css.get(0));
-//             } else {
-//                     text("<style type=\"text/css\">");
-//                     prettyln(forward);
-//                     forward.inc();
-//                     for(String str : imports.css) {
-//                             forward.print("@import url(\"");
-//                             forward.print(imports.themePath(null));
-//                             forward.print(str);
-//                             forward.print("\");");
-//                             prettyln(forward);
-//                     }
-//                     forward.dec();
-//                     forward.print("</style>");
-//                     prettyln(forward);
-//             }
-//     }
-       
-}
+/**\r
+ * ============LICENSE_START====================================================\r
+ * org.onap.aaf\r
+ * ===========================================================================\r
+ * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.\r
+ * ===========================================================================\r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ * \r
+ *      http://www.apache.org/licenses/LICENSE-2.0\r
+ * \r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ * ============LICENSE_END====================================================\r
+ *\r
+ */\r
+\r
+package org.onap.aaf.misc.xgen.html;\r
+\r
+import java.io.Writer;\r
+\r
+import org.onap.aaf.misc.xgen.Mark;\r
+\r
+public class HTML4Gen extends HTMLGen {\r
+       private final static String DOCTYPE = \r
+               /*\r
+               "<!DOCTYPE HTML PUBLIC " +\r
+               "\"-//W3C//DTD HTML 4.01 Transitional//EN\" " +\r
+               "\"http://www.w3.org/TR/html3/loose.dtd\">";\r
+               "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"" +\r
+               " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">";\r
+               */\r
+               "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"" +\r
+               " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">";\r
+\r
+       public HTML4Gen(Writer w) {\r
+               super(w);\r
+       }\r
+\r
+       @Override\r
+       public HTMLGen html(String ... attrib) {\r
+               forward.println(DOCTYPE);\r
+               return incr("html","xmlns=http://www.w3.org/1999/xhtml","xml:lang=en","lang=en");\r
+               \r
+       }\r
+\r
+       @Override\r
+       public Mark head() {\r
+               Mark head = new Mark("head");\r
+               incr(head);\r
+               return head;\r
+       }\r
+\r
+       @Override\r
+       public Mark body(String ... attrs) {\r
+               Mark body = new Mark("body");\r
+               incr(body,"body",attrs);\r
+               return body;\r
+       }\r
+       \r
+       @Override\r
+       public HTML4Gen charset(String charset) {\r
+               forward.append("<meta http-equiv=\"Content-type\" content=\"text.hml; charset=");\r
+               forward.append(charset);\r
+               forward.append("\">");\r
+               prettyln(forward);\r
+               return this;\r
+       }\r
+\r
+       @Override\r
+       public Mark header(String ... attribs) {\r
+               String[] a = new String[attribs.length+1];\r
+               a[0]="header";\r
+               System.arraycopy(attribs, 0, a, 1, attribs.length);\r
+               return divID(a);\r
+       }\r
+\r
+       @Override\r
+       public Mark footer(String ... attribs) {\r
+               String[] a = new String[attribs.length+1];\r
+               a[0]="footer";\r
+               System.arraycopy(attribs, 0, a, 1, attribs.length);\r
+               return divID(a);\r
+       }\r
+\r
+       @Override\r
+       public Mark section(String ... attribs) {\r
+               String[] a = new String[attribs.length+1];\r
+               a[0]="section";\r
+               System.arraycopy(attribs, 0, a, 1, attribs.length);\r
+               return divID(a);\r
+       }\r
+\r
+       @Override\r
+       public Mark article(String ... attribs) {\r
+               String[] a = new String[attribs.length+1];\r
+               a[0]="attrib";\r
+               System.arraycopy(attribs, 0, a, 1, attribs.length);\r
+               return divID(a);\r
+       }\r
+\r
+       @Override\r
+       public Mark aside(String ... attribs) {\r
+               String[] a = new String[attribs.length+1];\r
+               a[0]="aside";\r
+               System.arraycopy(attribs, 0, a, 1, attribs.length);\r
+               return divID(a);\r
+       }\r
+\r
+       @Override\r
+       public Mark nav(String ... attribs) {\r
+               String[] a = new String[attribs.length+1];\r
+               a[0]="nav";\r
+               System.arraycopy(attribs, 0, a, 1, attribs.length);\r
+               return divID(a);\r
+       }\r
+\r
+//     @Override\r
+//     protected void importCSS(Imports imports) {\r
+//             if(imports.css.size()==1) {\r
+//                     cssInline(imports.css.get(0));\r
+//             } else {\r
+//                     text("<style type=\"text/css\">");\r
+//                     prettyln(forward);\r
+//                     forward.inc();\r
+//                     for(String str : imports.css) {\r
+//                             forward.print("@import url(\"");\r
+//                             forward.print(imports.themePath(null));\r
+//                             forward.print(str);\r
+//                             forward.print("\");");\r
+//                             prettyln(forward);\r
+//                     }\r
+//                     forward.dec();\r
+//                     forward.print("</style>");\r
+//                     prettyln(forward);\r
+//             }\r
+//     }\r
+       \r
+}\r