Uses of Interface
org.jdesktop.swingx.renderer.StringValue

Packages that use StringValue
org.jdesktop.swingx.renderer Contains implementation of renderers used by JXTable, JXTreeTable and related classes. 
 

Uses of StringValue in org.jdesktop.swingx.renderer
 

Classes in org.jdesktop.swingx.renderer that implement StringValue
 class AbstractRenderer
          Convience common ancestor for SwingX renderers.
 class DefaultListRenderer
          Adapter to glue SwingX renderer support to core API.
 class DefaultTableRenderer
          Adapter to glue SwingX renderer support to core api.
 class DefaultTreeRenderer
          Adapter to glue SwingX renderer support to core api.
 class FormatStringValue
          Base type for Format-backed StringValue.
 class MappedValue
          Compound implementation of XXValue.
 

Fields in org.jdesktop.swingx.renderer declared as StringValue
static StringValue StringValues.EMPTY
          A StringValue that always presents an empty string.
static StringValue StringValues.FILE_NAME
          A StringValue that presents the current L&F display name for a given file.
static StringValue StringValues.FILE_TYPE
          A StringValue that presents the current L&F type name for a given file.
protected  StringValue ComponentProvider.formatter
          the converter to use for string representation.
static StringValue StringValues.TO_STRING
          A StringValue that presents a toString value for the given object.
 

Methods in org.jdesktop.swingx.renderer that return StringValue
 StringValue ComponentProvider.getStringValue()
          Returns the StringValue to use for obtaining the String representation.
 

Methods in org.jdesktop.swingx.renderer with parameters of type StringValue
 void ComponentProvider.setStringValue(StringValue formatter)
          Sets the StringValue to use.
 

Constructors in org.jdesktop.swingx.renderer with parameters of type StringValue
CheckBoxProvider(StringValue stringValue)
          Instantiates a CheckBoxProvider with the given StringValue and default alignment.
CheckBoxProvider(StringValue stringValue, int alignment)
          Instantiates a CheckBoxProvider with the given StringValue and alignment.
ComponentProvider(StringValue converter)
          Instantiates a component provider with LEADING horizontal alignment and the given converter.
ComponentProvider(StringValue converter, int alignment)
          Instantiates a LabelProvider with given to-String converter and given horizontal alignment.
DefaultListRenderer(StringValue converter)
          Instantiates a default table renderer with a default component controller using the given converter.
DefaultListRenderer(StringValue stringValue, IconValue iconValue)
          Instantiates a default list renderer with default component provider using both converters.
DefaultListRenderer(StringValue stringValue, IconValue iconValue, int alignment)
          Instantiates a default list renderer with default component provider using both converters and the given alignment.
DefaultListRenderer(StringValue converter, int alignment)
          Instantiates a default list renderer with a default component controller using the given converter and horizontal alignment.
DefaultTableRenderer(StringValue converter)
          Instantiates a default table renderer with a default component provider using the given converter.
DefaultTableRenderer(StringValue stringValue, IconValue iconValue)
          Intantiates a default table renderer with default component provider using both converters.
DefaultTableRenderer(StringValue stringValue, IconValue iconValue, int alignment)
          Intantiates a default table renderer with default component provider using both converters and the given alignment.
DefaultTableRenderer(StringValue converter, int alignment)
          Instantiates a default table renderer with a default component provider using the given converter and horizontal alignment.
DefaultTreeRenderer(IconValue iv, StringValue sv)
          Instantiates a default tree renderer with the default wrapping provider, using the given IconValue for customizing the icons and the given StringValue for node content.
DefaultTreeRenderer(IconValue iv, StringValue sv, boolean unwrapUserObject)
          Instantiates a default tree renderer with the default wrapping provider, using the given IconValue for customizing the icons and the given StringValue for node content.
DefaultTreeRenderer(StringValue sv)
          Instantiates a default tree renderer with a default component provider using the given converter.
LabelProvider(StringValue converter)
          Instantiates a LabelProvider with the given to-String converter and LEADING horizontal alignment.
LabelProvider(StringValue converter, int alignment)
          Instantiates a LabelProvider with given to-String converter and given horizontal alignment.
MappedValue(StringValue stringDelegate, IconValue iconDelegate)
           
MappedValue(StringValue stringDelegate, IconValue iconDelegate, BooleanValue booleanDelegate)
           
WrappingProvider(IconValue iconValue, StringValue wrappeeStringValue)
          Instantiates a WrappingProvider with default wrappee, configured to use the wrappeeStringValue.
WrappingProvider(IconValue iv, StringValue delegateStringValue, boolean unwrapUserObject)
          Instantiates a WrappingProvider with the given delegate provider for the node content and unwrapUserObject property.
WrappingProvider(StringValue wrappeeStringValue)
          Instantiates a WrappingProvider with default wrappee configured with the given StringValue.