Package com.microstrategy.web.app.beans
Interface OMDCreateFolderBean
-
- All Superinterfaces:
AppComponent
,Transformable
,ViewBeanParserBean
,WebComponent
public interface OMDCreateFolderBean extends ViewBeanParserBean
A bean for the Create Folder dialog- Since:
- MicroStrategy Web 8.0.0
-
-
Field Summary
-
Fields inherited from interface com.microstrategy.web.app.beans.AppComponent
COMPONENT_POSITION_NOT_INITIALIZED
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WebEvent
getApplyEvent()
Returns dialog's apply eventjava.lang.String
getDescriptionField()
Gets dialog's description field valuejava.lang.String
getErrorMessage()
Indicates an error description when processing FormularBar events.java.lang.String
getNameField()
Returns value of dialog's name fieldWebEvent
getOpenEvent()
Returns Open event for this beanWebComponent
getTarget()
Returns a target bean.void
onOpen(java.lang.String targetName)
Called from the Open event.void
setDescriptionField(java.lang.String value)
Sets dialog's description field valuevoid
setErrorMessage(java.lang.String errMssg)
Specify an error description when processing FormularBar events.void
setNameField(java.lang.String value)
Sets dialog's name field value-
Methods inherited from interface com.microstrategy.web.app.beans.AppComponent
getAppContext, getDescriptor, getDescriptor, getEventManager, getExtraInput, getExtraUrl, getLeft, getResultFilterMode, getTop, isDialog, isForcedChildrenStateSaving, isModal, isModalOpen, isOpen, setExtraInput, setExtraUrl, setForcedChildrenStateSaving, setHasJustOpened, setIsDialog, setIsModal, setIsOpen, setLeft, setTop
-
Methods inherited from interface com.microstrategy.web.beans.Transformable
addTransform, addTransformByClass, addTransformByStyle, addTransformByStyle, clearTransforms, getBeanContext, getMessageString, getMyTransformInstances, getTransformInstance, getTransformInstance, getTransformInstances, getType, hasTransform, hasTransform, invalidateTransformCache, setBeanContext, transform, transform
-
Methods inherited from interface com.microstrategy.web.app.beans.ViewBeanParserBean
getActiveElementIndex, getActiveViewKey, getTemplateElementList, getViewBean, getViewBean, setActiveElementIndex, setActiveViewKey
-
Methods inherited from interface com.microstrategy.web.beans.WebComponent
addChild, addChildStateInfo, addChildStateInfo, collectData, collectMinimalData, generateOutput, getBeanContext, getChild, getChild, getChildByClass, getChildByType, getChildCount, getChildrenByClass, getDefaultStateLevel, getFeaturesManager, getMaximumStateLevel, getName, getOutputFormat, getParent, getPath, getPersistMode, getRenderingFilter, getRoot, getTargetBean, getTargetBeanPath, getWebEvent, getWebEvent, getWebEventHandler, getXMLStatus, handleRequest, hasChanged, hasJustOpened, initBean, invalidateChildrenState, isBeanContextEmpty, isFeatureAvailable, prepareForReuse, removeChild, removeChild, searchChild, setBeanContext, setBeanContext, setChanged, setChanged, setDefaultStateLevel, setFeaturesManager, setName, setOutputFormat, setParent, setPersistMode, setRenderingFilter, setTargetBean, setTargetBeanPath, setWebEventHandler
-
-
-
-
Method Detail
-
getApplyEvent
WebEvent getApplyEvent()
Returns dialog's apply event- Returns:
- dialog's apply event
-
getErrorMessage
java.lang.String getErrorMessage()
Indicates an error description when processing FormularBar events.- Returns:
- errMssg Localized error message.
-
setErrorMessage
void setErrorMessage(java.lang.String errMssg)
Specify an error description when processing FormularBar events.- Parameters:
errMssg
- Localized error message.
-
getNameField
java.lang.String getNameField()
Returns value of dialog's name field- Returns:
- value of dialog's name field
-
setNameField
void setNameField(java.lang.String value)
Sets dialog's name field value- Parameters:
value
- value
-
getDescriptionField
java.lang.String getDescriptionField()
Gets dialog's description field value- Returns:
- dialog's description field value
-
setDescriptionField
void setDescriptionField(java.lang.String value)
Sets dialog's description field value- Parameters:
value
- value
-
onOpen
void onOpen(java.lang.String targetName)
Called from the Open event. Initializes bean state before opening it.- Parameters:
targetName
- the name of the target bean.
-
getOpenEvent
WebEvent getOpenEvent()
Returns Open event for this bean- Returns:
- Open event for this bean
-
getTarget
WebComponent getTarget()
Returns a target bean. As this bean can be popped up from different beans the target bean for it is determined dinamically from additional argument in it's open event.- Returns:
- a target bean.
-
-