1 11 12 package org.eclipse.ui.views.markers.internal; 13 14 import org.eclipse.core.runtime.IConfigurationElement; 15 16 23 public class AttributeMarkerGrouping { 24 25 private String attribute; 26 27 private String markerType; 28 29 private String defaultGroupingEntry; 30 31 private IConfigurationElement element; 32 33 42 public AttributeMarkerGrouping(String attributeId, String markerId, 43 String defaultEntry, IConfigurationElement configElement) { 44 attribute = attributeId; 45 markerType = markerId; 46 defaultGroupingEntry = defaultEntry; 47 element = configElement; 48 49 } 50 51 55 public String getDefaultGroupingEntry() { 56 return defaultGroupingEntry; 57 } 58 59 63 public String getMarkerType() { 64 return markerType; 65 } 66 67 71 public String getAttribute() { 72 return attribute; 73 } 74 75 79 public IConfigurationElement getElement() { 80 return element; 81 } 82 83 } 84 | Popular Tags |