1 19 20 package org.netbeans.modules.xml.schema.model; 21 22 import java.util.HashMap ; 23 import java.util.Map ; 24 import java.util.Set ; 25 import org.netbeans.modules.xml.schema.model.impl.DerivationsImpl; 26 27 31 public interface Derivation { 32 public enum Type { 33 EMPTY(""), 34 ALL("#all"), 35 EXTENSION("extension"), 36 RESTRICTION("restriction"), 37 SUBSTITUTION("substitution"), 38 LIST("list"), 39 UNION("union"); 40 Type(String s) { 41 value = s; 42 } 43 public String toString() { 44 return value; 45 } 46 private String value; 47 } 48 } 49 50 | Popular Tags |