to top
Datalogic APIs
public static class

VisualFormatter.Item.Property

extends Object
java.lang.Object
   ↳ com.datalogic.decode.VisualFormatter.Item.Property<T>

Class Overview

VisualFormatter.Item.Property is a class representing a property of a visual formatting item, used to add custom parameters that can change the runtime behavior of the formatting item. A property can be of different types and directions.

Summary

Nested Classes
enum VisualFormatter.Item.Property.Direction VisualFormatter.Item.Property.Direction is an enumeration representing the direction of the property. 
enum VisualFormatter.Item.Property.Type VisualFormatter.Item.Property.Type is an enumeration representing the type of property. 
Public Methods
T getDefaultValue()
Returns the property default value.
String getDescription()
Returns the property description.
VisualFormatter.Item.Property.Direction getDirection()
Returns the property direction.
String getId()
Returns the property id that uniquely identifies this property.
String getName()
Returns the property name.
VisualFormatter.Item.Property.Type getType()
Returns the property type.
T getValue()
Returns the property current value.
void setValue(T value)
Sets the property current value.
[Expand]
Inherited Methods
From class java.lang.Object

Public Methods

public T getDefaultValue ()

Added in revision 26

Returns the property default value.

Returns
  • The property default value.

public String getDescription ()

Added in revision 26

Returns the property description.

Returns
  • The property description.

public VisualFormatter.Item.Property.Direction getDirection ()

Added in revision 26

Returns the property direction.

Returns
  • The property direction.

public String getId ()

Added in revision 26

Returns the property id that uniquely identifies this property.

Returns
  • The property id.

public String getName ()

Added in revision 26

Returns the property name.

Returns
  • The property name.

public VisualFormatter.Item.Property.Type getType ()

Added in revision 26

Returns the property type.

Returns
  • The property type.

public T getValue ()

Added in revision 26

Returns the property current value.

Returns
  • The property current value.

public void setValue (T value)

Added in revision 26

Sets the property current value.

Parameters
value The value to set.