1 11 package org.eclipse.pde.internal.core.ischema; 12 13 20 public interface ISchemaCompositor extends ISchemaObject, ISchemaRepeatable { 21 24 public static final int ROOT = -1; 25 28 public static final int ALL = 0; 29 33 public static final int CHOICE = 1; 34 37 public static final int SEQUENCE = 2; 38 41 public static final int GROUP = 3; 42 45 public static final String [] kindTable = 46 { "all", "choice", "sequence", "group" }; 51 public int getChildCount(); 52 56 public ISchemaObject[] getChildren(); 57 62 public int getKind(); 63 } 64 | Popular Tags |