Package org.esa.snap.core.gpf.descriptor
Class DefaultTargetPropertyDescriptor
- java.lang.Object
-
- org.esa.snap.core.gpf.descriptor.DefaultTargetPropertyDescriptor
-
- All Implemented Interfaces:
DataElementDescriptor
,ElementDescriptor
,TargetPropertyDescriptor
public class DefaultTargetPropertyDescriptor extends Object implements TargetPropertyDescriptor
Default implementation of theTargetPropertyDescriptor
interface.- Since:
- BEAM 5
-
-
Constructor Summary
Constructors Constructor Description DefaultTargetPropertyDescriptor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAlias()
Class<?>
getDataType()
String
getDescription()
String
getLabel()
String
getName()
-
-
-
Method Detail
-
getName
public String getName()
- Specified by:
getName
in interfaceElementDescriptor
- Returns:
- The symbolic name used to unambiguously identify this element. E.g. the fully qualified name of a Java class.
-
getAlias
public String getAlias()
- Specified by:
getAlias
in interfaceElementDescriptor
- Returns:
- A short form of the symbolic name, or
null
if not declared.
-
getLabel
public String getLabel()
- Specified by:
getLabel
in interfaceElementDescriptor
- Returns:
- A human-readable version of the symbolic name to be used in user interfaces, or
null
if not declared.
-
getDescription
public String getDescription()
- Specified by:
getDescription
in interfaceElementDescriptor
- Returns:
- A short description, or
null
if not declared.
-
getDataType
public Class<?> getDataType()
- Specified by:
getDataType
in interfaceDataElementDescriptor
- Returns:
- The element's data type.
Defaults to
Object
.
-
-