Package eu.mihosoft.vmf.core
Class AnnotationInfo
- java.lang.Object
-
- eu.mihosoft.vmf.core.AnnotationInfo
-
@Deprecated public final class AnnotationInfo extends java.lang.Object
Deprecated.An annotation info stores the key and value of a custom model annotation.
-
-
Constructor Summary
Constructors Constructor Description AnnotationInfo(java.lang.String key, java.lang.String value)
Deprecated.Creates a new annotation info.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
Deprecated.java.lang.String
getKey()
Deprecated.java.lang.String
getValue()
Deprecated.int
hashCode()
Deprecated.void
setKey(java.lang.String key)
Deprecated.Sets the annotation key.void
setValue(java.lang.String value)
Deprecated.Sets the annotation value.
-
-
-
Method Detail
-
getKey
public java.lang.String getKey()
Deprecated.- Returns:
- annotation key
-
setKey
public void setKey(java.lang.String key)
Deprecated.Sets the annotation key.- Parameters:
key
- string to set
-
getValue
public java.lang.String getValue()
Deprecated.- Returns:
- annotation value
-
setValue
public void setValue(java.lang.String value)
Deprecated.Sets the annotation value.- Parameters:
value
- string to set
-
equals
public boolean equals(java.lang.Object o)
Deprecated.- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
Deprecated.- Overrides:
hashCode
in classjava.lang.Object
-
-