Package science.aist.gtf.graph
Interface MetaTag<T>
-
- Type Parameters:
T
- the type of the value of the tag
- All Known Implementing Classes:
MetaTagImpl
public interface MetaTag<T>
Implementation of a meta tag, to add additional info to other objects
- Since:
- 1.0
- Author:
- Andreas Schuler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getKey()
gets value of field keyT
getValue()
gets value of field valuevoid
setKey(String key)
sets value of field keyvoid
setValue(T value)
sets value of field value
-
-
-
Method Detail
-
getKey
String getKey()
gets value of field key- Returns:
- value of field key
-
setKey
void setKey(String key)
sets value of field key- Parameters:
key
- value of field key
-
getValue
T getValue()
gets value of field value- Returns:
- value of field value
-
setValue
void setValue(T value)
sets value of field value- Parameters:
value
- value of field value
-
-