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 aStyleMapper
class.- Since:
- MicroStrategy Web 9.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDescription()
Returns the description associated with this Mapper definition.java.lang.String
getImplClassName()
Gets the fully qualified class name for the mapper definition.java.lang.String
getName()
Returns the name of this mapper object.StyleMapper
getStyleMapperInstance()
Returns a new instance of aStyleMapper
object from the associated information.void
setDescription(java.lang.String description)
Sets the description associated with this Mapper definition.void
setImplClassName(java.lang.String fqcn)
Sets the fully qualified class name for the mapper definition.void
setName(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.IllegalArgumentException
Sets 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 aStyleMapper
object from the associated information.- Returns:
- A new instance of a
StyleMapper
object.
-
-