Package com.microstrategy.web.objects
Interface WebNodePlaceHolder
-
- All Known Implementing Classes:
WebNodePlaceHolderImpl
public interface WebNodePlaceHolder
This interface represents a placeholder within aWebNode
. The object which implements this interface is not directly instantiatable. The only way to obtain or create a WebNodePlaceHolder in an expression node is by calling theWebNode.createPlaceHolder()
method. Note that a WebNodePlaceHolder object is linked to its WebNode object, and cannot be directly moved between nodes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getIndex()
Returns the place holder index.java.lang.String
getName()
Returns the place holder name.void
setIndex(int index)
Sets the place holder index.void
setName(java.lang.String name)
Sets the place holder name.
-
-
-
Method Detail
-
getIndex
int getIndex()
Returns the place holder index.- Returns:
- index
-
setIndex
void setIndex(int index)
Sets the place holder index.- Parameters:
index
-
-
getName
java.lang.String getName()
Returns the place holder name.- Returns:
- name
-
setName
void setName(java.lang.String name)
Sets the place holder name.- Parameters:
name
-
-
-