mxStyleRegistry

Singleton class that acts as a global converter from string to object values in a style.  This is currently only used to perimeters and edge styles.

Summary
mxStyleRegistrySingleton class that acts as a global converter from string to object values in a style.
Variables
valuesMaps from strings to objects.
Functions
putValuePuts the given object into the registry under the given name.
getValueReturns the value associated with the given name.
getNameReturns the name for the given value.

Variables

values

public static $values

Maps from strings to objects.

Functions

putValue

static function putValue($name,
$value)

Puts the given object into the registry under the given name.

getValue

static function getValue($name)

Returns the value associated with the given name.

getName

static function getName($value)

Returns the name for the given value.

public static $values
Maps from strings to objects.
static function putValue($name,
$value)
Puts the given object into the registry under the given name.
static function getValue($name)
Returns the value associated with the given name.
static function getName($value)
Returns the name for the given value.
Close