1 11 package org.eclipse.pde.internal.core.ischema; 12 13 17 public interface ISchemaAttribute extends ISchemaObject, IMetaAttribute { 18 21 public static final int OPTIONAL = 0; 22 23 26 public static final int REQUIRED = 1; 27 28 32 public static final int DEFAULT = 2; 33 34 37 public static final String [] useTable = { 38 "optional", "required", "default" }; 40 44 public ISchemaSimpleType getType(); 45 46 49 public int getUse(); 50 51 54 public Object getValue(); 55 56 } 57 | Popular Tags |