/**
* The progress state of the open study/knowledge.
*/
- private String progressState;
+ private String _progressState;
/**
* The selection state of the open study/knowledge.
*/
- private String selectionState;
+ private String _selectionState;
/**
* The type of the open study/knowledge.
*/
- private String entryType;
+ private String _entryType;
/**
* The type title of the open study/knowledge.
*/
- private String entryTypeTitle;
+ private String _entryTypeTitle;
/**
* The title of the open study/knowledge.
*/
- private String entryTitle;
+ private String _entryTitle;
/**
* Property that indicates whether the current open study is editable or not.
* On the screen it looks like pen on the status icon, pop-up menu also can be called.
* It is necessary for correct building the title bar.
*/
- private String editDisabledProperty;
+ private String _editDisabledProperty;
/**
* Get the progressState.
* @return the progressState
*/
public String getProgressState() {
- return progressState;
+ return _progressState;
}
/**
* @param progressState the progressState to set
*/
public void setProgressState(final String progressState) {
- this.progressState = progressState;
+ _progressState = progressState;
}
/**
* @return the selectionState
*/
public String getSelectionState() {
- return selectionState;
+ return _selectionState;
}
/**
* @param selectionState the selectionState to set
*/
public void setSelectionState(final String selectionState) {
- this.selectionState = selectionState;
+ _selectionState = selectionState;
}
/**
* @return the entryType
*/
public String getEntryType() {
- return entryType;
+ return _entryType;
}
/**
* @param entryType the entryType to set
*/
public void setEntryType(final String entryType) {
- this.entryType = entryType;
+ _entryType = entryType;
}
/**
* @return the entryTypeTitle
*/
public String getEntryTypeTitle() {
- return entryTypeTitle;
+ return _entryTypeTitle;
}
/**
* @param entryTypeTitle the entryTypeTitle to set
*/
public void setEntryTypeTitle(final String entryTypeTitle) {
- this.entryTypeTitle = entryTypeTitle;
+ _entryTypeTitle = entryTypeTitle;
}
/**
* @return the entryTitle
*/
public String getEntryTitle() {
- return entryTitle;
+ return _entryTitle;
}
* @param entryTitle the entryTitle to set
*/
public void setEntryTitle(final String entryTitle) {
- this.entryTitle = entryTitle;
+ _entryTitle = entryTitle;
}
/**
* @return the editDisabledProperty
*/
public String getEditDisabledProperty() {
- return editDisabledProperty;
+ return _editDisabledProperty;
}
/**
* Set the editDisabledProperty.
* @param editDisabledProperty the editDisabledProperty to set
*/
- public void setEditDisabledProperty(String editDisabledProperty) {
- this.editDisabledProperty = editDisabledProperty;
+ public void setEditDisabledProperty(final String editDisabledProperty) {
+ _editDisabledProperty = editDisabledProperty;
}
}
/**
* Property, is this tool the "None" one.
*/
- private Boolean isToolNone;
+ private Boolean _isToolNone;
/**
* Property, is this tool the "Standard" one.
*/
- private Boolean isToolStandard;
+ private Boolean _isToolStandard;
/**
* Property, is this tool the "Study" one.
*/
- private Boolean isToolStudy;
+ private Boolean _isToolStudy;
/**
* Property, is this tool the "Back" one.
*/
- private Boolean isToolBack;
+ private Boolean _isToolBack;
//=== OTHER OPERATIONS ============================
/**
* Can the given User edit the given Study/Knowledge.
*/
- private Boolean canUserEdit;
+ private Boolean _canUserEdit;
/**
* It's for (popup.isEnabled("script") operation on the toolbar.jsp.
*/
- private Boolean isEnabledScript;
+ private Boolean _isEnabledScript;
/**
* Initialize the tool bar properties.
* @return the isToolNone
*/
public Boolean getIsToolNone() {
- return isToolNone;
+ return _isToolNone;
}
/**
* @param isToolNone the isToolNone to set
*/
public void setIsToolNone(final Boolean isToolNone) {
- this.isToolNone = isToolNone;
+ _isToolNone = isToolNone;
}
/**
* @return the isToolStandard
*/
public Boolean getIsToolStandard() {
- return isToolStandard;
+ return _isToolStandard;
}
/**
* @param isToolStandard the isToolStandard to set
*/
public void setIsToolStandard(final Boolean isToolStandard) {
- this.isToolStandard = isToolStandard;
+ _isToolStandard = isToolStandard;
}
/**
* @return the isToolStudy
*/
public Boolean getIsToolStudy() {
- return isToolStudy;
+ return _isToolStudy;
}
/**
* @param isToolStudy the isToolStudy to set
*/
public void setIsToolStudy(final Boolean isToolStudy) {
- this.isToolStudy = isToolStudy;
+ _isToolStudy = isToolStudy;
}
/**
* @return the isToolBack
*/
public Boolean getIsToolBack() {
- return isToolBack;
+ return _isToolBack;
}
/**
* @param isToolBack the isToolBack to set
*/
public void setIsToolBack(final Boolean isToolBack) {
- this.isToolBack = isToolBack;
+ _isToolBack = isToolBack;
}
/**
* @return the canUserEdit
*/
public Boolean getCanUserEdit() {
- return canUserEdit;
+ return _canUserEdit;
}
/**
* @param canUserEdit the canUserEdit to set
*/
public void setCanUserEdit(final Boolean canUserEdit) {
- this.canUserEdit = canUserEdit;
+ _canUserEdit = canUserEdit;
}
/**
* @return the isEnabledScript
*/
public Boolean getIsEnabledScript() {
- return isEnabledScript;
+ return _isEnabledScript;
}
/**
* @param isEnabledScript the isEnabledScript to set
*/
public void setIsEnabledScript(final Boolean isEnabledScript) {
- this.isEnabledScript = isEnabledScript;
+ _isEnabledScript = isEnabledScript;
}
}