1 11 package org.eclipse.pde.internal.core.ischema; 12 13 import org.eclipse.core.runtime.IAdaptable; 14 import org.eclipse.pde.core.IWritable; 15 19 public interface ISchemaObject extends IAdaptable, IWritable { 20 24 public static final String P_DESCRIPTION="description"; 29 public static final String P_NAME = "name"; 35 public String getDescription(); 36 39 public String getName(); 40 43 ISchemaObject getParent(); 44 45 void setParent(ISchemaObject parent); 46 49 public ISchema getSchema(); 50 } 51 | Popular Tags |