Package cz.vutbr.fit.layout.model
Interface Tag
-
- All Known Implementing Classes:
DefaultTag
public interface TagA tag that can be assigned to an area.- Author:
- burgetr
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetLevel()The tag level if the tags are hiearchically organized.StringgetType()The tag type that allows to distinguish tags of different purposes and different source.StringgetValue()Obtains the string value (the name) of the tag.
-
-
-
Method Detail
-
getValue
String getValue()
Obtains the string value (the name) of the tag.- Returns:
- the tag value
-
getLevel
int getLevel()
The tag level if the tags are hiearchically organized.- Returns:
- The level, where 0 corresponds to the root tag.
-
getType
String getType()
The tag type that allows to distinguish tags of different purposes and different source. Each tag source should have its own type.- Returns:
- the tag type string
-
-