Uses of Class
com.bc.ceres.binding.Property
Packages that use Property
Package
Description
The main purpose of this package is to provide a simple data binding framework for binding
Java objects to a GUI or a DOM.
Contains some common
Validator
implementations.Provides several utility classes used throughout SNAP.
-
Uses of Property in com.bc.ceres.binding
Methods in com.bc.ceres.binding that return PropertyModifier and TypeMethodDescriptionstatic Property
static <T> Property
static Property
static Property
Property.createForField
(Object object, String name) static Property
Property.createForField
(Object object, String name, Object value) static Property
static Property
Property[]
PropertyContainer.getProperties()
Property[]
PropertySet.getProperties()
Gets all properties currently contained in this set.PropertyContainer.getProperty
(String name) PropertySet.getProperty
(String name) Gets the named property.Methods in com.bc.ceres.binding with parameters of type PropertyModifier and TypeMethodDescriptionvoid
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 PropertyModifier and TypeMethodDescriptionvoid
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 PropertyModifier and TypeMethodDescriptionvoid
TimeStampExtractor.DateInterpretationPatternValidator.validateValue
(Property property, Object value) void
TimeStampExtractor.FilenameInterpretationPatternValidator.validateValue
(Property property, Object value)