1 11 package org.eclipse.debug.internal.ui.viewers.provisional; 12 13 14 35 public interface IModelDelta { 36 37 39 43 public static int NO_CHANGE = 0; 44 48 public static int ADDED = 1; 49 53 public static int REMOVED = 1 << 1; 54 59 public static int REPLACED = 1 << 3; 60 64 public static int INSERTED = 1 << 4; 65 66 68 71 public static int CONTENT = 1 << 10; 72 75 public static int STATE = 1 << 11; 76 77 79 82 public static int EXPAND = 1 << 20; 83 86 public static int SELECT = 1 << 21; 87 93 public IModelDelta getParent(); 94 95 100 public Object getElement(); 101 102 108 public int getFlags(); 109 110 115 public ModelDelta[] getNodes(); 116 117 123 public Object getReplacementElement(); 124 125 132 public int getIndex(); 133 134 } 135 | Popular Tags |