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 commonValidatorimplementations.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 PropertyProperty. create(String name, Class<?> type)static <T> PropertyProperty. create(String name, Class<? extends T> type, T defaultValue, boolean notNull)static PropertyProperty. create(String name, Object value)static PropertyProperty. createForField(Object object, String name)static PropertyProperty. createForField(Object object, String name, Object value)static PropertyProperty. createForMapEntry(Map<String,Object> map, String name, Class<?> type)static PropertyProperty. 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.PropertyPropertyContainer. getProperty(String name)PropertyPropertySet. getProperty(String name)Gets the named property.Methods in com.bc.ceres.binding with parameters of type Property Modifier and Type Method Description voidPropertyContainer. addProperties(Property... properties)voidPropertySet. addProperties(Property... properties)Adds the given properties to this set.voidPropertyContainer. addProperty(Property property)voidPropertySet. addProperty(Property property)Adds a property to this set.voidPropertyContainer. removeProperties(Property... properties)voidPropertySet. removeProperties(Property... properties)Removes the given properties from this set.voidPropertyContainer. removeProperty(Property property)voidPropertySet. removeProperty(Property property)Removes a property from this set.voidValidator. 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 voidArrayValidator. validateValue(Property property, Object value)voidIntervalValidator. validateValue(Property property, Object value)voidMultiValidator. validateValue(Property property, Object value)voidNotEmptyValidator. validateValue(Property property, Object value)voidNotNullValidator. validateValue(Property property, Object value)voidPatternValidator. validateValue(Property property, Object value)voidTypeValidator. validateValue(Property property, Object value)voidValueSetValidator. 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 voidTimeStampExtractor.DateInterpretationPatternValidator. validateValue(Property property, Object value)voidTimeStampExtractor.FilenameInterpretationPatternValidator. validateValue(Property property, Object value)
-