< prev index next >

src/jdk.xml.bind/share/classes/com/sun/codemodel/internal/package-info.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Oracle designates this

@@ -33,11 +33,11 @@
  * <p>
  * With CodeModel, you build the java source code by first building AST,
  * then writing it out as text files that is Java source files.
  * The AST looks like this:
  *
- * {@DotDiagram
+ * {@code DotDiagram
     digraph G {
         cls1 [label="JDefinedClass"];
         cls2 [label="JDefinedClass"];
         JCodeModel -> cls1 [label="generated class"];
         JCodeModel -> cls2 [label="generated class"];

@@ -105,11 +105,11 @@
  * Compared to template-based code generator, the writing operation
  * is slow, as it needs to traverse each AST node. Consider
  * pre-encoding tokens (like 'public') to the target encoding,
  * and consider exploting the subtree equivalence.
  *
- * @ArchitectureDocument
+ * {@code ArchitectureDocument}
  */
 package com.sun.codemodel.internal;
 
 import java.util.List;
 import java.util.Map;
< prev index next >