src/jdk.compiler/share/classes/com/sun/source/util/DocTreeFactory.java
changeset 52487 5d1d07b72f15
parent 48028 9e022f580a9d
equal deleted inserted replaced
52486:6f5948597697 52487:5d1d07b72f15
    58 import com.sun.source.doctree.SerialFieldTree;
    58 import com.sun.source.doctree.SerialFieldTree;
    59 import com.sun.source.doctree.SerialTree;
    59 import com.sun.source.doctree.SerialTree;
    60 import com.sun.source.doctree.SinceTree;
    60 import com.sun.source.doctree.SinceTree;
    61 import com.sun.source.doctree.StartElementTree;
    61 import com.sun.source.doctree.StartElementTree;
    62 import com.sun.source.doctree.SummaryTree;
    62 import com.sun.source.doctree.SummaryTree;
       
    63 import com.sun.source.doctree.SystemPropertyTree;
    63 import com.sun.source.doctree.TextTree;
    64 import com.sun.source.doctree.TextTree;
    64 import com.sun.source.doctree.ThrowsTree;
    65 import com.sun.source.doctree.ThrowsTree;
    65 import com.sun.source.doctree.UnknownBlockTagTree;
    66 import com.sun.source.doctree.UnknownBlockTagTree;
    66 import com.sun.source.doctree.UnknownInlineTagTree;
    67 import com.sun.source.doctree.UnknownInlineTagTree;
    67 import com.sun.source.doctree.UsesTree;
    68 import com.sun.source.doctree.UsesTree;
   323     default SummaryTree newSummaryTree(List<? extends DocTree> summary) {
   324     default SummaryTree newSummaryTree(List<? extends DocTree> summary) {
   324         throw new UnsupportedOperationException("not implemented");
   325         throw new UnsupportedOperationException("not implemented");
   325     }
   326     }
   326 
   327 
   327     /**
   328     /**
       
   329      * Create a new {@code SystemPropertyTree} object, to represent a {@code {@systemProperty } } tag.
       
   330      *
       
   331      * @param propertyName the system property name
       
   332      * @return a {@code SystemPropertyTree} object
       
   333      * @since 12
       
   334      */
       
   335     SystemPropertyTree newSystemPropertyTree(Name propertyName);
       
   336 
       
   337     /**
   328      * Create a new {@code TextTree} object, to represent some plain text.
   338      * Create a new {@code TextTree} object, to represent some plain text.
   329      * @param text the text
   339      * @param text the text
   330      * @return a {@code TextTree} object
   340      * @return a {@code TextTree} object
   331      */
   341      */
   332     TextTree newTextTree(String text);
   342     TextTree newTextTree(String text);