java.lang.Object | |
↳ | com.microstrategy.web.app.tasks.AbstractMobileSubscriptionTask.SimpleSubscriptionTransform |
Protected Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
SimpleSubscriptionTransform() |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
boolean |
canTransform(Transformable data)
Checks that the transform supports specified data object and that object
is in the state supported by this transform.
| ||||||||||
String |
getDescription()
Returns a textual description of the transform.
| ||||||||||
FormalParameters |
getFormalParams()
Returns the collection of formal parameters associated with this transform.
| ||||||||||
String |
getID()
Returns the unique name of the component to be used as the ID for its shell
| ||||||||||
MarkupOutput |
getPreview()
Produces a preview output for this transform.
| ||||||||||
Class |
getSupportedBeanType()
Returns a root class/interface supported by this transform.
| ||||||||||
boolean |
isPreviewAvailable()
Returns true if this transform supports preview functionality, false
otherwise.
| ||||||||||
boolean |
isResolved()
Returns whether each required formal parameter has a value associated with it.
| ||||||||||
boolean |
supports(Class beanClass)
Returns true if the transform supports objects of specified type.
| ||||||||||
boolean |
supports(Transformable data)
Returns true if the transform supports the specified data object.
| ||||||||||
void |
transform(Transformable data, MarkupOutput transOut)
Transforms the data object and appends result to the transOut.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Checks that the transform supports specified data object and that object is in the state supported by this transform.
Returns a textual description of the transform.
Returns the collection of formal parameters associated with this transform.
Returns the unique name of the component to be used as the ID for its shell
Produces a preview output for this transform.
UnsupportedOperationException |
---|
Returns a root class/interface supported by this transform. We assume here that each transform supports only beans belonging to one class hierarchy.
Returns true if this transform supports preview functionality, false otherwise.
Returns whether each required formal parameter has a value associated with it.
Returns true if the transform supports objects of specified type.
beanClass | the Java Class object representing bean type. |
---|
Returns true if the transform supports the specified data object. The check is performed only on the object's type, no object state is taken into account.
data | a transformable object |
---|
Transforms the data object and appends result to the transOut.
data | an object to transform. It must be of proper type supported by the concrete transform this method called on, or ClassCastExcetption will be thrown |
---|---|
transOut | the MarkupOutput object where the transform result will be added. |
ClassCastException |
---|