Package cz.vutbr.fit.layout.model
Interface Tag
-
- All Known Implementing Classes:
DefaultTag,MetaRefTag
public interface TagA tag that can be assigned to an area. The tag is uniquely identified by its IRI. Moreoved, it has a name and a type tha allows to distinguish tags of different purposes.- Author:
- burgetr
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.eclipse.rdf4j.model.IRIgetIri()A unique tag IRI.StringgetName()Obtains the name of the tag.StringgetType()The tag type that allows to distinguish tags of different purposes and different source.
-
-
-
Method Detail
-
getIri
org.eclipse.rdf4j.model.IRI getIri()
A unique tag IRI.- Returns:
-
getName
String getName()
Obtains the name of the tag.- Returns:
- the tag name
-
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
-
-