Package com.microstrategy.web.transform
Interface MapperDefn
-
- All Superinterfaces:
java.lang.Cloneable,ConfigurationElement
- All Known Implementing Classes:
MapperDefnImpl
public interface MapperDefn extends ConfigurationElement
This class represents the definition of aStyleMapperclass.- Since:
- MicroStrategy Web 9.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDescription()Returns the description associated with this Mapper definition.java.lang.StringgetImplClassName()Gets the fully qualified class name for the mapper definition.java.lang.StringgetName()Returns the name of this mapper object.StyleMappergetStyleMapperInstance()Returns a new instance of aStyleMapperobject from the associated information.voidsetDescription(java.lang.String description)Sets the description associated with this Mapper definition.voidsetImplClassName(java.lang.String fqcn)Sets the fully qualified class name for the mapper definition.voidsetName(java.lang.String name)Sets the name of this mapper object.-
Methods inherited from interface com.microstrategy.utils.config.ConfigurationElement
getAttribute, getAttributes, getElement, getElements, getKey, getNodeName, getStrAttribute, initFromXML, reload, toXML
-
-
-
-
Method Detail
-
getName
java.lang.String getName()
Returns the name of this mapper object.- Returns:
- The name of this mapper object.
-
setName
void setName(java.lang.String name) throws java.lang.IllegalArgumentExceptionSets the name of this mapper object.- Parameters:
name- The name of this mapper object.- Throws:
java.lang.IllegalArgumentException- If the name is already used, then this exception is thrown.
-
getImplClassName
java.lang.String getImplClassName()
Gets the fully qualified class name for the mapper definition.- Returns:
- The fully qualified class name for the layout source.
-
setImplClassName
void setImplClassName(java.lang.String fqcn)
Sets the fully qualified class name for the mapper definition.- Parameters:
fqcn- The fully qualified class name.
-
getDescription
java.lang.String getDescription()
Returns the description associated with this Mapper definition.- Returns:
- The description associated with this Mapper definition.
-
setDescription
void setDescription(java.lang.String description)
Sets the description associated with this Mapper definition.- Parameters:
description- A description for this Mapper definition.
-
getStyleMapperInstance
StyleMapper getStyleMapperInstance()
Returns a new instance of aStyleMapperobject from the associated information.- Returns:
- A new instance of a
StyleMapperobject.
-
-