1 11 12 package org.eclipse.core.resources; 13 14 import org.eclipse.core.runtime.IPath; 15 16 25 public interface IPathVariableChangeEvent { 26 27 28 public final static int VARIABLE_CHANGED = 1; 29 30 31 public final static int VARIABLE_CREATED = 2; 32 33 34 public final static int VARIABLE_DELETED = 3; 35 36 45 public IPath getValue(); 46 47 52 public String getVariableName(); 53 54 60 public Object getSource(); 61 62 70 public int getType(); 71 72 } 73 | Popular Tags |