1 19 package org.netbeans.tax.decl; 20 21 import org.netbeans.tax.*; 22 23 public abstract class LeafType extends TreeElementDecl.ContentType { 25 26 30 public LeafType () { 31 super (); 32 } 33 34 public LeafType (LeafType leafType) { 35 super (leafType); 36 } 37 38 39 43 44 public abstract String getName (); 45 46 48 public boolean allowElements () { 49 return false; 50 } 51 52 54 public boolean allowText () { 55 return false; 56 } 57 58 } 59 | Popular Tags |