|
||||||||||
| PREV CLASS Documentation homepage NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjavax.faces.webapp.UIComponentTagBase
javax.faces.webapp.UIComponentClassicTagBase
javax.faces.webapp.UIComponentTag
javax.faces.webapp.UIComponentBodyTag
ilog.views.faces.taglib.IlvBaseTag
ilog.views.faces.taglib.IlvInteractorTag
ilog.views.faces.dhtml.taglib.IlvFacesSelectInteractorTag
ilog.views.diagrammer.faces.dhtml.taglib.IlvFacesDiagrammerSelectInteractorTag
public class IlvFacesDiagrammerSelectInteractorTag
IlvFacesDiagrammerSelectInteractorTag defines the JSP custom
tag handler for the
IlvFacesDiagrammerSelectInteractor
component and its specific DHTML renderer.
| Field Summary |
|---|
| Fields inherited from class javax.faces.webapp.UIComponentClassicTagBase |
|---|
bodyContent, pageContext, UNIQUE_ID_PREFIX |
| Fields inherited from class javax.faces.webapp.UIComponentTagBase |
|---|
log |
| Fields inherited from interface ilog.views.diagrammer.faces.IlvFacesDiagrammerConstants |
|---|
DASHBOARD_DIAGRAM, DATA_SOURCE, DATA_SOURCE_ID, DATA_URL, DIAGRAMMER, EDITABLE, INPUT_XSL, OUTPUT_XSL, PARAM_CSS, PARAM_XML, PROPERTY_ACCESSOR, STYLE_SHEETS |
| Fields inherited from interface javax.servlet.jsp.tagext.Tag |
|---|
EVAL_BODY_INCLUDE, EVAL_PAGE, SKIP_BODY, SKIP_PAGE |
| Fields inherited from interface javax.servlet.jsp.tagext.BodyTag |
|---|
EVAL_BODY_BUFFERED, EVAL_BODY_TAG |
| Fields inherited from interface javax.servlet.jsp.tagext.IterationTag |
|---|
EVAL_BODY_AGAIN |
| Constructor Summary | |
|---|---|
IlvFacesDiagrammerSelectInteractorTag()
Creates a new IlvFacesDiagrammerSelectInteractorTag instance. |
|
| Method Summary | |
|---|---|
String |
getComponentType()
Returns the component type for the component that is or will be bound to this tag. |
String |
getDeletionAllowed()
Tests if the user is allowed to delete the current selection in the selection manager using the delete key when this interactor is set
on the view. |
String |
getInfoProviderMethodBinding()
Deprecated. Beginning with JViews 8.0 use IlvFacesDiagrammerSelectionManagerTag.setInfoProviderMethodBinding(String) instead. |
String |
getRendererType()
Return the |
void |
setDeletionAllowed(String deletionAllowed)
Sets if the user is allowed to delete the current selection in the selection manager using the delete
key when this interactor is set on the view. |
void |
setInfoProviderMethodBinding(String infoProviderMethodBinding)
Deprecated. Beginning with JViews 8.0 use IlvFacesDiagrammerSelectionManagerTag.setInfoProviderMethodBinding(String) instead. |
protected void |
setProperties(UIComponent component)
Override properties and attributes of the specified component, if the corresponding properties of this tag handler instance were explicitly set. This method must be called ONLY if the specified component was in fact created during the execution of this tag handler instance, and this call will occur BEFORE the component is added to the view. Tag subclasses that want to support additional set properties
must ensure that the base class
protected void setProperties(UIComponent component) {
super.setProperties(component);
if (foo != null) {
component.setAttribute("foo", foo);
}
if (bar != null) {
component.setAttribute("bar", bar);
}
}
|
| Methods inherited from class ilog.views.faces.dhtml.taglib.IlvFacesSelectInteractorTag |
|---|
getForceUpdateProperties, getImageMode, getLineColor, getLineWidth, getMoveAllowed, getOnSelectionChanged, setForceUpdateProperties, setImageMode, setLineColor, setLineWidth, setMoveAllowed, setOnSelectionChanged |
| Methods inherited from class ilog.views.faces.taglib.IlvInteractorTag |
|---|
getCursor, getMenuModelId, getMessage, setCursor, setMenuModelId, setMessage |
| Methods inherited from class ilog.views.faces.taglib.IlvBaseTag |
|---|
setProperty, setVBProperty, testSetProperties |
| Methods inherited from class javax.faces.webapp.UIComponentTag |
|---|
createComponent, getParentUIComponentTag, hasBinding, isSuppressed, isValueReference, release, setBinding, setRendered |
| Methods inherited from class javax.faces.webapp.UIComponentTagBase |
|---|
getELContext |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface javax.servlet.jsp.tagext.Tag |
|---|
doEndTag, doStartTag, getParent, setPageContext, setParent |
| Constructor Detail |
|---|
public IlvFacesDiagrammerSelectInteractorTag()
IlvFacesDiagrammerSelectInteractorTag instance.
| Method Detail |
|---|
public String getComponentType()
Returns the component type for the component that is or will be bound to this tag.
This implementation returns null, subclasses must
override this method to return the appropriate value.
getComponentType in class IlvBaseTagpublic String getRendererType()
Return the rendererType property that selects the
Renderer to be used for encoding this component, or
null to ask the component to render itself directly.
This implementation return null, subclasses must override
this method to return the appropriate value.
getRendererType in class IlvBaseTagprotected void setProperties(UIComponent component)
Override properties and attributes of the specified component, if the corresponding properties of this tag handler instance were explicitly set. This method must be called ONLY if the specified component was in fact created during the execution of this tag handler instance, and this call will occur BEFORE the component is added to the view.
Tag subclasses that want to support additional set properties
must ensure that the base class setProperties()
method is still called. A typical implementation that supports
extra properties foo and bar would look
something like this:
protected void setProperties(UIComponent component) {
super.setProperties(component);
if (foo != null) {
component.setAttribute("foo", foo);
}
if (bar != null) {
component.setAttribute("bar", bar);
}
}
setProperties in class IlvFacesSelectInteractorTagcomponent - The component whose properties are to be
overriddenpublic String getInfoProviderMethodBinding()
IlvFacesDiagrammerSelectionManagerTag.setInfoProviderMethodBinding(String) instead.
ArrayList methodName(IlvDiagrammer, Object) or
ArrayList methodName(IlvDiagrammer, IlvSDMNode). The returned value of this method is a list of additional
properties to associate to the selected object. A valid item of this list is a String or a list itself.
public void setInfoProviderMethodBinding(String infoProviderMethodBinding)
IlvFacesDiagrammerSelectionManagerTag.setInfoProviderMethodBinding(String) instead.
ArrayList methodName(IlvDiagrammer, Object) or
ArrayList methodName(IlvDiagrammer, IlvSDMNode). The returned value of this method is a list of additional
properties to associate to the selected object. A valid item of this list is a String or a list itself.
infoProviderMethodBinding - The binding to the method that will provide the additional information on the selected objects.public String getDeletionAllowed()
delete key when this interactor is set
on the view.
By default, this flag is set to false.
true is returned.public void setDeletionAllowed(String deletionAllowed)
delete
key when this interactor is set on the view.
deletionAllowed - The flag to set.
|
||||||||||
| PREV CLASS Documentation homepage NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||