1 11 package org.eclipse.core.resources; 12 13 import java.util.Map ; 14 15 25 public interface IMarkerDelta { 26 39 public Object getAttribute(String attributeName); 40 41 54 public int getAttribute(String attributeName, int defaultValue); 55 56 69 public String getAttribute(String attributeName, String defaultValue); 70 71 84 public boolean getAttribute(String attributeName, boolean defaultValue); 85 86 101 public Map getAttributes(); 102 103 117 public Object [] getAttributes(String [] attributeNames); 118 119 126 public long getId(); 127 128 138 public int getKind(); 139 140 148 public IMarker getMarker(); 149 150 155 public IResource getResource(); 156 157 166 public String getType(); 167 168 179 public boolean isSubtypeOf(String superType); 180 } 181 | Popular Tags |