|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcom.ptc.windchill.enterprise.change2.beans.ChangeWizardBean
public class ChangeWizardBean
The ChangeWizardBean class is used by all of the common change
management wizards as a container bean for maintaining the configured state
of the client for the given request. The bean should only be used with a
scope of "request" by the JSP context.
A JSP can declare a usage of this bean with the following syntax:
<jsp:useBean id="changeWizardBean" class="com.ptc.windchill.enterprise.change2.beans.ChangeWizardBean" scope="request">
  lt;jsp:setProperty name="changeWizardBean" property="request" value="${pageContext.request}"/>
</jsp:useBean>
com.ptc.windchill.enterprise.change2.tags.ChangeWizardInitializeTag
is used to setup the bean in the top-most JSP page (such as a create.jsp file).
| Method Summary | |
|---|---|
String |
getAnnotationUIContext()
Gets the annotation UI Context from the bean. |
String |
getChangeItemClass()
Gets the change item class from the bean. |
String |
getChangeMode()
Gets the change mode from the bean. |
HttpServletRequest |
getRequest()
Retrieves the current HttpServletRequest from the Bean. |
String |
getVarianceEffectivity()
Gets the variance effectivity from the bean. |
void |
setAnnotationUIContext(String context)
Set the annotation UI Context in the bean. |
void |
setChangeItemClass(String parameter)
Set the change Item class in the bean. |
void |
setChangeMode(String mode)
Set the change mode for the bean. |
void |
setRequest(HttpServletRequest theRequest)
Set the request object in the bean. |
void |
setVarianceEffectivity(String varEff)
Set the variance effectivity value in the bean. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method Detail |
|---|
public void setRequest(HttpServletRequest theRequest)
theRequest - The current HttpServletRequest objectpublic HttpServletRequest getRequest()
public String getChangeMode()
public void setChangeMode(String mode)
com.ptc.core.ui.resources.ComponentMode
class or a warning will be thrown (meaning null will be set).
mode - the change mode to set in the bean.public String getVarianceEffectivity()
public void setVarianceEffectivity(String varEff)
varEff - the variance effectivity to set. Should be either (true | false | null)public String getAnnotationUIContext()
public void setAnnotationUIContext(String context)
context - the annotation UI Context to set. Can be either ( change | affectedData | miniinfo | null )public String getChangeItemClass()
public void setChangeItemClass(String parameter)
parameter - the change item class to set. Should be either (wt.change2.ChangeOrderIfc | wt.change2.ChangeRequestIfc | null )
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||