1 19 20 21 package org.netbeans.modules.xml.schema.model.visitor; 22 23 import org.netbeans.modules.xml.schema.model.*; 24 25 26 31 public class DefaultSchemaVisitor implements SchemaVisitor { 32 33 public void visit(Import im) { 34 } 35 36 public void visit(Sequence s) { 37 } 38 39 public void visit(Whitespace ws) { 40 } 41 42 public void visit(GroupReference gr) { 43 } 44 45 public void visit(KeyRef kr) { 46 } 47 48 public void visit(SimpleContentRestriction scr) { 49 } 50 51 public void visit(GlobalAttribute ga) { 52 } 53 54 public void visit(Union u) { 55 } 56 57 public void visit(AnyAttribute anyAttr) { 58 } 59 60 public void visit(MaxLength ml) { 61 } 62 63 public void visit(SimpleTypeRestriction str) { 64 } 65 66 public void visit(GlobalSimpleType gst) { 67 } 68 69 public void visit(GlobalElement ge) { 70 } 71 72 public void visit(Schema s) { 73 } 74 75 public void visit(MaxInclusive mi) { 76 } 77 78 public void visit(FractionDigits fd) { 79 } 80 81 public void visit(SimpleExtension se) { 82 } 83 84 public void visit(Include include) { 85 } 86 87 public void visit(GlobalAttributeGroup gag) { 88 } 89 90 public void visit(LocalAttribute la) { 91 } 92 93 public void visit(MinLength ml) { 94 } 95 96 public void visit(Key key) { 97 } 98 99 public void visit(Selector s) { 100 101 } 102 103 public void visit(Redefine rd) { 104 } 105 106 public void visit(Field f) { 107 } 108 109 public void visit(LocalSimpleType type) { 110 } 111 112 public void visit(ComplexContent cc) { 113 } 114 115 public void visit(AnyElement any) { 116 } 117 118 public void visit(SimpleContent sc) { 119 } 120 121 public void visit(TotalDigits td) { 122 } 123 124 public void visit(Length length) { 125 } 126 127 public void visit(LocalComplexType type) { 128 } 129 130 public void visit(LocalElement le) { 131 } 132 133 public void visit(ComplexContentRestriction ccr) { 134 } 135 136 public void visit(MinExclusive me) { 137 } 138 139 public void visit(List l) { 140 } 141 142 public void visit(Enumeration e) { 143 } 144 145 public void visit(Pattern p) { 146 } 147 148 public void visit(Unique u) { 149 } 150 151 public void visit(GlobalComplexType gct) { 152 } 153 154 public void visit(Documentation d) { 155 } 156 157 public void visit(All all) { 158 } 159 160 public void visit(Annotation ann) { 161 } 162 163 public void visit(MinInclusive mi) { 164 } 165 166 public void visit(AttributeGroupReference agr) { 167 } 168 169 public void visit(GlobalGroup gd) { 170 } 171 172 public void visit(Choice choice) { 173 } 174 175 public void visit(ComplexExtension ce) { 176 } 177 178 public void visit(MaxExclusive me) { 179 } 180 181 public void visit(AppInfo appinfo) { 182 } 183 184 public void visit(Notation notation) { 185 } 186 187 public void visit(ElementReference er) { 188 } 189 190 public void visit(AttributeReference reference) { 191 } 192 193 } 194 | Popular Tags |