1 19 package org.netbeans.tax.spec; 20 21 import org.netbeans.tax.TreeConditionalSection; 22 import org.netbeans.tax.TreeException; 23 import org.netbeans.tax.InvalidArgumentException; 24 25 30 public interface ConditionalSection { 31 32 36 39 public static interface Constraints { 40 41 } 43 44 48 51 public static interface Creator { 52 53 56 public TreeConditionalSection createConditionalSection (boolean include); 57 58 } 60 61 65 68 public static interface Writer { 69 70 public void writeConditionalSection (TreeConditionalSection conditionalSection) throws TreeException; 71 72 } 74 75 79 82 public static interface Child { 83 84 } 86 } 87 | Popular Tags |