1 19 package org.netbeans.modules.xml.retriever.catalog.model; 20 21 import org.netbeans.modules.xml.xam.dom.Attribute; 22 23 public enum CatalogAttributes implements Attribute { 24 uri("uri"), 25 systemId("systemId"), 26 xprojectCatalogFileLocation("xprojectCatalogFileLocation"), 27 referencingFile("referencingFile"), 28 catalog("catalog"); 29 30 private String name; 31 private Class type; 32 33 CatalogAttributes(String name) { 34 this(name, String .class); 35 } 36 37 CatalogAttributes(String name, Class type) { 38 this.name = name; 39 this.type = type; 40 } 41 42 public Class getType() { 43 return type; 44 } 45 46 public String getName() { 47 return name; 48 } 49 50 public Class getMemberType() { 51 return null; 52 } 53 } 54 | Popular Tags |