java.lang.Object |
↳ |
com.microstrategy.web.blocks.xforms.BlockTransformScript |
Class Overview
A Block Transform Script is a textual script that specifies how to transform
a given Block tree. Each "step" of this script is performed sequentially
by the way of a given Block Transform (see BlockTransform
). The result
is either a transformed Block tree (which has the same root) or a new
Block tree which may be a subset of the original Block tree or a completely
newly generated result.
The process of executing a script involves two separate steps:
- First, the textual script is parsed (see
setScript(String)
) and
converted into an "executable" form
- Then, it is executed on a given "root Block" (see
execute(Block)
).
The result of the execute call is the new root Block. At each point a checked
exception may be raised:
Summary
[Expand]
Inherited Methods |
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
Public Constructors
public
BlockTransformScript
()
Public Methods
public
String
getScript
()
public
void
setScript
(String script)