Interface KeyLabel
-
- All Known Implementing Classes:
KeyLabelImpl
public interface KeyLabelinterface for a key label pair as used as value list for function variable definitions e.g. in placeholder metadata of a document of template
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetKey()Gets the key of this key label pairjava.lang.StringgetLabel()Gets the label of this key label pairvoidsetKey(java.lang.String key)Sets the key of this key label pairvoidsetLabel(java.lang.String label)Sets the label of this key label pair
-
-
-
Method Detail
-
getKey
java.lang.String getKey()
Gets the key of this key label pair
- Returns:
- key of this key label pair
-
setKey
void setKey(java.lang.String key)
Sets the key of this key label pair
- Parameters:
key- key of this key label pair
-
getLabel
java.lang.String getLabel()
Gets the label of this key label pair
- Returns:
- label of this key label pair
-
setLabel
void setLabel(java.lang.String label)
Sets the label of this key label pair
- Parameters:
label- label of this key label pair
-
-