Package org.eclipse.cdt.core.dom.ast.tag
Interface ITagReader
-
public interface ITagReaderAn interface that provides read-only access to the tags associated with a particular binding.- Since:
- 5.5
- See Also:
ITag,ITagService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ITaggetTag(java.lang.String id)Looks for a tag for the receiver, returns null if there is no such tag.java.lang.Iterable<ITag>getTags()Returns all tags known to the receiver.
-
-
-
Method Detail
-
getTag
ITag getTag(java.lang.String id)
Looks for a tag for the receiver, returns null if there is no such tag.- Parameters:
id- A string that uniquely identifies the tag to be returned. This value was provided by the contributor when the tag was created (seeITagWriter.createTag(String, int)).
-
getTags
java.lang.Iterable<ITag> getTags()
Returns all tags known to the receiver. Does not return null.
-
-