Uses of Class
com.bc.ceres.binding.Property
-
Packages that use Property Package Description com.bc.ceres.binding The main purpose of this package is to provide a simple data binding framework for binding Java objects to a GUI or a DOM.com.bc.ceres.binding.validators Contains some commonValidator
implementations.org.esa.snap.core.util Provides several utility classes used throughout SNAP. -
-
Uses of Property in com.bc.ceres.binding
Methods in com.bc.ceres.binding that return Property Modifier and Type Method Description static Property
Property. create(String name, Class<?> type)
static <T> Property
Property. create(String name, Class<? extends T> type, T defaultValue, boolean notNull)
static Property
Property. create(String name, Object value)
static Property
Property. createForField(Object object, String name)
static Property
Property. createForField(Object object, String name, Object value)
static Property
Property. createForMapEntry(Map<String,Object> map, String name, Class<?> type)
static Property
Property. createForMapEntry(Map<String,Object> map, String name, Class<?> type, Object value)
Property[]
PropertyContainer. getProperties()
Property[]
PropertySet. getProperties()
Gets all properties currently contained in this set.Property
PropertyContainer. getProperty(String name)
Property
PropertySet. getProperty(String name)
Gets the named property.Methods in com.bc.ceres.binding with parameters of type Property Modifier and Type Method Description void
PropertyContainer. addProperties(Property... properties)
void
PropertySet. addProperties(Property... properties)
Adds the given properties to this set.void
PropertyContainer. addProperty(Property property)
void
PropertySet. addProperty(Property property)
Adds a property to this set.void
PropertyContainer. removeProperties(Property... properties)
void
PropertySet. removeProperties(Property... properties)
Removes the given properties from this set.void
PropertyContainer. removeProperty(Property property)
void
PropertySet. removeProperty(Property property)
Removes a property from this set.void
Validator. validateValue(Property property, Object value)
Validates a value with respect to a provided property. -
Uses of Property in com.bc.ceres.binding.validators
Methods in com.bc.ceres.binding.validators with parameters of type Property Modifier and Type Method Description void
ArrayValidator. validateValue(Property property, Object value)
void
IntervalValidator. validateValue(Property property, Object value)
void
MultiValidator. validateValue(Property property, Object value)
void
NotEmptyValidator. validateValue(Property property, Object value)
void
NotNullValidator. validateValue(Property property, Object value)
void
PatternValidator. validateValue(Property property, Object value)
void
TypeValidator. validateValue(Property property, Object value)
void
ValueSetValidator. validateValue(Property property, Object value)
-
Uses of Property in org.esa.snap.core.util
Methods in org.esa.snap.core.util with parameters of type Property Modifier and Type Method Description void
TimeStampExtractor.DateInterpretationPatternValidator. validateValue(Property property, Object value)
void
TimeStampExtractor.FilenameInterpretationPatternValidator. validateValue(Property property, Object value)
-