org.pentaho.reporting.engine.classic.core.modules.parser.ext.factory.stylekey
Interface StyleKeyFactory

All Superinterfaces:
Serializable
All Known Implementing Classes:
AbstractStyleKeyFactory, DefaultStyleKeyFactory, PageableLayoutStyleKeyFactory, StyleKeyFactoryCollector

public interface StyleKeyFactory
extends Serializable

A style key factory.

Author:
Thomas Morgner

Method Summary
 Object createBasicObject(StyleKey k, String value, Class c, ClassFactory cf)
          Creates an object.
 Iterator getRegisteredKeys()
          Returns an iterator that provides access to the registered keys.
 StyleKey getStyleKey(String name)
          Returns a style key.
 

Method Detail

getStyleKey

StyleKey getStyleKey(String name)
Returns a style key.

Parameters:
name - the name.
Returns:
The style key.

createBasicObject

Object createBasicObject(StyleKey k,
                         String value,
                         Class c,
                         ClassFactory cf)
Creates an object.

Parameters:
k - the style key.
value - the value.
c - the class.
cf - the class factory used to create the basic object.
Returns:
The object.

getRegisteredKeys

Iterator getRegisteredKeys()
Returns an iterator that provides access to the registered keys.

Returns:
The iterator.