UIFormInputSetWithAction.java
/*
* Copyright (C) 2003-2007 eXo Platform SAS.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License
* as published by the Free Software Foundation; either version 3
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see<http://www.gnu.org/licenses/>.
*/
package org.exoplatform.ecm.webui.form;
import java.util.HashMap;
import java.util.List;
import org.exoplatform.webui.application.WebuiRequestContext;
import org.exoplatform.webui.config.annotation.ComponentConfig;
import org.exoplatform.webui.form.UIForm;
import org.exoplatform.webui.form.UIFormInput;
import org.exoplatform.webui.form.UIFormInputSet;
/**
* Created by The eXo Platform SARL
* Author : Dang Van Minh
* minh.dang@exoplatform.com
* Sep 20, 2006
*/
@ComponentConfig(
template = "classpath:groovy/ecm/webui/form/UIFormInputSetWithAction.gtmpl"
)
public class UIFormInputSetWithAction extends UIFormInputSet implements UIFormInput {
private String[] actions_ ;
private String[] values_ ;
private boolean isView_ ;
private boolean isShowOnly_ = false ;
private boolean isDeleteOnly_ = false ;
private HashMap<String, String> infor_ = new HashMap<String, String>() ;
private HashMap<String, List<String>> listInfor_ = new HashMap<String, List<String>>() ;
private HashMap<String, String[]> actionInfo_ = new HashMap<String, String[]>() ;
private HashMap<String, String[]> fieldActions_ = new HashMap<String, String[]>() ;
private boolean isShowActionInfo_ = false ;
private HashMap<String, String> msgKey_ = new HashMap<String, String>();
public UIFormInputSetWithAction(String name) {
setId(name) ;
setComponentConfig(getClass(), null) ;
}
public boolean isShowActionInfo() {return isShowActionInfo_ ;}
public void showActionInfo(boolean isShow) {isShowActionInfo_ = isShow ;}
public void processRender(WebuiRequestContext context) throws Exception {
super.processRender(context) ;
}
public void setActions(String[] actionList, String[] values){
actions_ = actionList ;
values_ = values ;
}
public String[] getInputSetActions() { return actions_ ; }
public String[] getActionValues() { return values_ ; }
public String getFormName() {
UIForm uiForm = getAncestorOfType(UIForm.class);
return uiForm.getId() ;
}
public boolean isShowOnly() { return isShowOnly_ ; }
public void setIsShowOnly(boolean isShowOnly) { isShowOnly_ = isShowOnly ; }
public boolean isDeleteOnly() { return isDeleteOnly_ ; }
public void setIsDeleteOnly(boolean isDeleteOnly) { isDeleteOnly_ = isDeleteOnly ; }
public void setListInfoField(String fieldName, List<String> listInfor) {
listInfor_.put(fieldName, listInfor) ;
}
public List<String> getListInfoField(String fieldName) {
if(listInfor_.containsKey(fieldName)) return listInfor_.get(fieldName) ;
return null ;
}
public void setInfoField(String fieldName, String fieldInfo) {
infor_.put(fieldName, fieldInfo) ;
}
public String getInfoField(String fieldName) {
if(infor_.containsKey(fieldName)) return infor_.get(fieldName) ;
return null ;
}
public void setActionInfo(String fieldName, String[] actionNames) {
actionInfo_.put(fieldName, actionNames) ;
}
public String[] getActionInfo(String fieldName) {
if(actionInfo_.containsKey(fieldName)) return actionInfo_.get(fieldName) ;
return null ;
}
public void setFieldActions(String fieldName, String[] actionNames) {
fieldActions_.put(fieldName, actionNames) ;
}
public String[] getFieldActions(String fieldName) {
return fieldActions_.get(fieldName) ;
}
public void setIsView(boolean isView) { isView_ = isView; }
public boolean isView() { return isView_ ; }
public String getBindingField() { return null; }
public List getValidators() { return null; }
@SuppressWarnings("unused")
public UIFormInput addValidator(Class clazz, Object...params) throws Exception { return this; }
public Object getValue() throws Exception { return null; }
@SuppressWarnings("unused")
public UIFormInput setValue(Object value) throws Exception { return null; }
public Class getTypeValue() { return null ; }
public void setIntroduction(String fieldName, String msgKey) { msgKey_.put(fieldName, msgKey) ; }
public String getMsgKey(String fieldName) { return msgKey_.get(fieldName) ; }
public String getLabel() {
return getId();
}
@SuppressWarnings("unused")
public UIFormInput addValidator(Class arg0) throws Exception {
return null;
}
}