Class FormPopupHelperContext
- java.lang.Object
-
- com.saperion.ngc.scripthelper.internal.FormPopupHelperContext
-
public class FormPopupHelperContext extends java.lang.Object
Context for FormPopupHelper, holds all information needed for opening the form popup window.- Since:
- 7.5
- Author:
- art
-
-
Constructor Summary
Constructors Constructor Description FormPopupHelperContext(java.lang.String formName, FormPopupType formType)
Creates the context with minimum of needed information.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDDC()
Gets the name of the definition (for new documents).DocumentId
getDocumentId()
Gets the document id (of the document to edit).java.lang.String
getForm()
Gets the name of the form, which should be opened.java.lang.String
getTitle()
Gets the title for the form popup window (default is 'Edit index [FORM_NAME]').FormPopupType
getType()
Gets the type of form popup window.boolean
isReadOnly()
Gets the read only parameter value (default isfalse
).void
setDDC(java.lang.String ddc)
Sets the name of the definition.void
setDocumentId(DocumentId id)
Sets the document id.void
setReadOnly(boolean readOnly)
Sets the read only parameter value.void
setTitle(java.lang.String title)
Sets the title for the form popup window.
-
-
-
Constructor Detail
-
FormPopupHelperContext
public FormPopupHelperContext(java.lang.String formName, FormPopupType formType)
Creates the context with minimum of needed information.- Parameters:
formName
- name of the form, which should be openedformType
- type of the form popup window
-
-
Method Detail
-
getForm
public java.lang.String getForm()
Gets the name of the form, which should be opened.- Returns:
- name of the form
-
getType
public FormPopupType getType()
Gets the type of form popup window.- Returns:
- type of form popup window
-
isReadOnly
public boolean isReadOnly()
Gets the read only parameter value (default isfalse
).- Returns:
- read only parameter value or default (
false
)
-
setReadOnly
public void setReadOnly(boolean readOnly)
Sets the read only parameter value.- Parameters:
readOnly
- value for read only parameter
-
getTitle
public java.lang.String getTitle()
Gets the title for the form popup window (default is 'Edit index [FORM_NAME]').- Returns:
- title or default ('Edit index [FORM_NAME]')
-
setTitle
public void setTitle(java.lang.String title)
Sets the title for the form popup window.- Parameters:
title
- titel for the form popup window
-
getDDC
public java.lang.String getDDC()
Gets the name of the definition (for new documents).- Returns:
- name of the definition or
null
-
setDDC
public void setDDC(java.lang.String ddc)
Sets the name of the definition.- Parameters:
ddc
- name of the definition
-
getDocumentId
public DocumentId getDocumentId()
Gets the document id (of the document to edit).- Returns:
- document id
-
setDocumentId
public void setDocumentId(DocumentId id)
Sets the document id.- Parameters:
id
- document id
-
-