Uses of Class
com.luciad.view.TLcdDataPropertyValueContext
Package
Description
This package provides functionality to create customizer panel factories for instances of
TLcdDataPropertyValueContext
.-
Uses of TLcdDataPropertyValueContext in com.luciad.lucy.gui.customizer.dataproperty
Modifier and TypeMethodDescriptionprotected final TLcdDataPropertyValueContext
ALcyDataPropertyCustomizerPanel.getPropertyValue()
Returns theTLcdDataPropertyValueContext
currentlyset
on this customizer.Modifier and TypeMethodDescriptionTLcyDataPropertyValueFilters.createFilter
(TLcdDataType aDataType, TLcdDataProperty... aDataProperties) Creates a filter that will accept instances ofTLcdDataPropertyValueContext
whosedata object
has the passed data type and whoseexpression
is consistent with the passed data properties.TLcyDataPropertyValueFilters.createFilter
(TLcdDataType aDataType, String... aExpressions) Creates a filter that will accept instances ofTLcdDataPropertyValueContext
whosedata object
has the passed data type and whoseexpression
is equal to one of the passed expressions.Modifier and TypeMethodDescriptionTLcyDataPropertyValueCustomizerPanelFactories.createCheckBoxCustomizerPanelFactory
(ILcdFilter<TLcdDataPropertyValueContext> aPropertyValueFilter) Creates aILcyCustomizerPanelFactory
that creates a check box customizer for instances ofTLcdDataPropertyValueContext
that contain boolean values.TLcyDataPropertyValueCustomizerPanelFactories.createComboBoxCustomizerPanelFactory
(ILcdFilter<TLcdDataPropertyValueContext> aPropertyValueFilter, Set<?> aPossibleValues) Creates aILcyCustomizerPanelFactory
that creates a combobox customizer using the passed set of values.TLcyDataPropertyValueCustomizerPanelFactories.createCustomizerPanelFactory
(TLcdDataProperty aDataProperty, ILcdFilter<TLcdDataPropertyValueContext> aPropertyValueFilter) This method creates a customizer factory implementation for the passedTLcdDataProperty
.TLcyDataPropertyValueCustomizerPanelFactories.createGeneralCustomizerPanelFactory
(ILcdFilter<TLcdDataPropertyValueContext> aPropertyValueFilter) Returns a factory that can create data property value customizers if the following conditions apply: The object to create a customizer for is an instance ofTLcdDataPropertyValueContext
.TLcyDataPropertyValueCustomizerPanelFactories.createTextFieldCustomizerPanelFactory
(ILcdFilter<TLcdDataPropertyValueContext> aPropertyValueFilter, int aMinNbOfChars, int aMaxNbOfChars, boolean aEmptyStringForNull) Creates aILcyCustomizerPanelFactory
that creates a text field customizer with input validation for string values of the specified data property, making sure the length of the string is within the bounds.TLcyDataPropertyValueCustomizerPanelFactories.createTextFieldCustomizerPanelFactory
(ILcdFilter<TLcdDataPropertyValueContext> aPropertyValueFilter, Format aFormat) Creates aILcyCustomizerPanelFactory
that creates a text field customizer that can edit instances ofTLcdDataPropertyValueContext
if the passed format can convert strings to values and vice versa.