Package org.eclipse.ui
Interface IMarkerActionFilter
- All Superinterfaces:
IActionFilter
Describes the public attributes for a marker and the acceptable values
each may have.
A popup menu extension may use these constants to describe its object target. Each identifies an attribute name or possible value.
Clients are not expected to implement this interface.
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
An attribute indicating whether the marker is considered done (value"done"
).static final String
An attribute indicating the marker message (value"message"
).static final String
An attribute indicating the marker priority (value"priority"
).static final String
An attribute indicating the type of resource associated with the marker (value"resourceType"
).static final String
An attribute indicating the marker severity (value"severity"
).static final String
An attribute indicating the marker super type (value"superType"
).static final String
An attribute indicating the marker type (value"type"
). -
Method Summary
Methods inherited from interface org.eclipse.ui.IActionFilter
testAttribute
-
Field Details
-
TYPE
An attribute indicating the marker type (value"type"
). The attribute value in xml should match one of the marker types defined in the workbench's marker extension point. Common examples areIMarker.TASK, IMarker.BOOKMARK, and IMarker.MARKER
.- See Also:
-
SUPER_TYPE
An attribute indicating the marker super type (value"superType"
). The attribute value in xml should match one of the marker types defined in the workbench's marker extension point. Common examples areIMarker.TASK, IMarker.BOOKMARK, and IMarker.MARKER
.- See Also:
-
PRIORITY
An attribute indicating the marker priority (value"priority"
). The attribute value in xml must be one ofIMarker.PRIORITY_LOW, IMarker.PRIORITY_NORMAL, or IMarker.PRIORITY_HIGH
- See Also:
-
SEVERITY
An attribute indicating the marker severity (value"severity"
). The attribute value in xml in xml must be one ofIMarker.SEVERITY_ERROR, IMarker.SEVERITY_WARNING, or IMarker.SEVERITY_INFO
- See Also:
-
DONE
An attribute indicating whether the marker is considered done (value"done"
). The attribute value in xml must be one of"true" or "false"
.- See Also:
-
MESSAGE
An attribute indicating the marker message (value"message"
). The attribute value in xml is unconstrained. "*" may be used at the start or the end to represent "one or more characters".- See Also:
-
RESOURCE_TYPE
An attribute indicating the type of resource associated with the marker (value"resourceType"
). The attribute value in xml must be one ofIResource.FILE, IResource.PROJECT, IResource.FOLDER, or IResource.ROOT
.- See Also:
-