Package org.jorigin.identification
Interface Named
-
- All Known Subinterfaces:
JImageFeature
public interface NamedAn interface that describe an object that can be named.- Since:
- 1.0.9
- Version:
- "1.0.9" - b201903071030L
- Author:
- Julien Seinturier - COMEX S.A. - contact@jorigin.org - https://github.com/jorigin/jeometry
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetName()Get the name of the object.voidsetName(java.lang.String name)Set the name of the object.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Get the name of the object.- Returns:
- the name of the object.
- See Also:
setName(String)
-
setName
void setName(java.lang.String name)
Set the name of the object.- Parameters:
name- the name of the object.- See Also:
getName()
-
-