|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.internet2.middleware.grouper.grouperUi.beans.json.GuiScreenAction
public class GuiScreenAction
one action for screen (response has many actions in a list
Constructor Summary | |
---|---|
GuiScreenAction()
default constructor |
Method Summary | |
---|---|
String |
getAlert()
alert to show on screen |
Boolean |
getAlertCentered()
if the alert should be centered or not (default true) |
String |
getAssignmentName()
the place in object model to assign |
Object |
getAssignmentObject()
the object to assign |
Boolean |
getCloseModal()
if the current modal window should be closed |
String |
getDialog()
dialog to show on screen |
String |
getFormFieldName()
if changing the value of a form field, this is the name |
List<String> |
getFormFieldValues()
if changing the value of a form field, these are the values (list of size one for single values) |
String |
getHideShowNameToHide()
hide show name to hide |
String |
getHideShowNameToShow()
hide show name to show |
String |
getHideShowNameToToggle()
hide show name to toggle |
String |
getInnerHtml()
|
String |
getInnerHtmlJqueryHandle()
|
List<GuiOption> |
getOptionValues()
option values to replace (use with optionValuesSelectName) (could be null to blank it out) |
String |
getOptionValuesSelectName()
select name to replace options |
String |
getScript()
run a javascript |
static GuiScreenAction |
newAlert(String theAlert)
construct with the name and object |
static GuiScreenAction |
newAlert(String theAlert,
boolean theAlertCentered)
construct with the name and object |
static GuiScreenAction |
newAlertFromJsp(String jspName)
construct with JSP name |
static GuiScreenAction |
newAssign(String theAssignmentName,
Object theAssignmentObject)
construct with the name and object |
static GuiScreenAction |
newCloseModal()
construct with an instruction to close the current modal window if open |
static GuiScreenAction |
newDialogFromJsp(String jspName)
construct with JSP name |
static GuiScreenAction |
newFormFieldValue(String theFormFieldName,
String theFormFieldValue)
construct with form field to change by name and value |
static GuiScreenAction |
newFormFieldValues(String theFormFieldName,
List<String> theFormFieldValues)
construct with form field to change by name and values (e.g. |
static GuiScreenAction |
newHideShowNameToHide(String theHideShowName)
construct with hide show name to hide |
static GuiScreenAction |
newHideShowNameToShow(String theHideShowName)
construct with hide show name to show |
static GuiScreenAction |
newHideShowNameToToggle(String theHideShowName)
construct with hide show name to toggle |
static GuiScreenAction |
newInnerHtml(String htmlReplaceJqueryHandle1,
String html)
construct with the name and object |
static GuiScreenAction |
newInnerHtmlFromJsp(String htmlReplaceJqueryHandle1,
String jspName)
construct with the name and JSP name |
static GuiScreenAction |
newOptionValues(String theSelectName,
List<GuiOption> theOptionValues)
construct with the name and object |
static GuiScreenAction |
newScript(String theScript)
construct with the name and object |
void |
setAlert(String alert1)
alert to show on screen |
void |
setAlertCentered(Boolean alertCentered1)
if the alert should be centered or not (default true) |
void |
setAssignmentName(String assignmentName1)
the place in object model to assign |
void |
setAssignmentObject(Object assignmentObject1)
the object to assign |
void |
setCloseModal(Boolean closeModal1)
if the current modal window should be closed |
void |
setDialog(String dialog1)
dialog to show on screen |
void |
setFormFieldName(String formFieldName1)
if changing the value of a form field, this is the name |
void |
setFormFieldValues(List<String> formFieldValue1)
if changing the value of a form field, these are the values (list of size one for single values) |
void |
setHideShowNameToHide(String hideShowNameToHide1)
hide show name to hide |
void |
setHideShowNameToShow(String hideShowNameToShow1)
hide show name to show |
void |
setHideShowNameToToggle(String hideShowNameToToggle1)
hide show name to toggle |
void |
setInnerHtml(String htmlReplaceHtml1)
|
void |
setInnerHtmlJqueryHandle(String htmlReplaceJqueryHandle1)
|
void |
setOptionValues(List<GuiOption> optionValues1)
option values to replace (use with optionValuesSelectName) (could be null to blank it out) |
void |
setOptionValuesSelectName(String optionValuesSelectName1)
select name to replace options |
void |
setScript(String script1)
run a javascript |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public GuiScreenAction()
Method Detail |
---|
public String getFormFieldName()
public void setFormFieldName(String formFieldName1)
formFieldName1
- the formFieldName to setpublic List<String> getFormFieldValues()
public void setFormFieldValues(List<String> formFieldValue1)
formFieldValue1
- the formFieldValue to setpublic List<GuiOption> getOptionValues()
public void setOptionValues(List<GuiOption> optionValues1)
optionValues1
- the optionValues to setpublic String getOptionValuesSelectName()
public void setOptionValuesSelectName(String optionValuesSelectName1)
optionValuesSelectName1
- the optionValuesSelectName to setpublic String getDialog()
public void setDialog(String dialog1)
dialog1
- the dialog to setpublic String getAlert()
public void setAlert(String alert1)
alert1
- the alert to setpublic Boolean getAlertCentered()
public void setAlertCentered(Boolean alertCentered1)
alertCentered1
- the alertCentered to setpublic String getHideShowNameToShow()
public void setHideShowNameToShow(String hideShowNameToShow1)
hideShowNameToShow1
- the hideShowNameToShow to setpublic String getHideShowNameToHide()
public void setHideShowNameToHide(String hideShowNameToHide1)
hideShowNameToHide1
- the hideShowNameToHide to setpublic String getHideShowNameToToggle()
public void setHideShowNameToToggle(String hideShowNameToToggle1)
hideShowNameToToggle1
- the hideShowNameToToggle to setpublic String getInnerHtmlJqueryHandle()
public void setInnerHtmlJqueryHandle(String htmlReplaceJqueryHandle1)
htmlReplaceJqueryHandle1
- the htmlReplaceJqueryHandle to setpublic String getInnerHtml()
public void setInnerHtml(String htmlReplaceHtml1)
htmlReplaceHtml1
- the htmlReplaceHtml to setpublic String getScript()
public void setScript(String script1)
script1
- the script to setpublic static GuiScreenAction newAssign(String theAssignmentName, Object theAssignmentObject)
theAssignmentName
- theAssignmentObject
-
public static GuiScreenAction newOptionValues(String theSelectName, List<GuiOption> theOptionValues)
theSelectName
- name of the selecttheOptionValues
- values to replace (could be null to blank it out
public static GuiScreenAction newFormFieldValue(String theFormFieldName, String theFormFieldValue)
theFormFieldName
- theFormFieldValue
-
public static GuiScreenAction newFormFieldValues(String theFormFieldName, List<String> theFormFieldValues)
theFormFieldName
- theFormFieldValues
-
public static GuiScreenAction newHideShowNameToShow(String theHideShowName)
theHideShowName
-
public static GuiScreenAction newHideShowNameToHide(String theHideShowName)
theHideShowName
-
public static GuiScreenAction newHideShowNameToToggle(String theHideShowName)
theHideShowName
-
public static GuiScreenAction newAlert(String theAlert)
theAlert
-
public static GuiScreenAction newAlert(String theAlert, boolean theAlertCentered)
theAlert
- theAlertCentered
- if the alert should be centered
public static GuiScreenAction newScript(String theScript)
theScript
-
public static GuiScreenAction newInnerHtmlFromJsp(String htmlReplaceJqueryHandle1, String jspName)
htmlReplaceJqueryHandle1
- e.g. #someIdjspName
- e.g. /WEB-INF/templates/something.jsp
public static GuiScreenAction newAlertFromJsp(String jspName)
jspName
- e.g. /WEB-INF/templates/something.jsp
public static GuiScreenAction newDialogFromJsp(String jspName)
jspName
- e.g. /WEB-INF/templates/something.jsp
public static GuiScreenAction newCloseModal()
public String getAssignmentName()
public void setAssignmentName(String assignmentName1)
assignmentName1
- the assignmentName to setpublic Object getAssignmentObject()
public void setAssignmentObject(Object assignmentObject1)
assignmentObject1
- the assignmentObject to setpublic Boolean getCloseModal()
public void setCloseModal(Boolean closeModal1)
closeModal1
- the closeModal to setpublic static GuiScreenAction newInnerHtml(String htmlReplaceJqueryHandle1, String html)
htmlReplaceJqueryHandle1
- e.g. #someIdhtml
- is html to put on screen
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |