All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
net.anotheria.anosite.gen.aswebdata.action.NewAttributeAction Maven / Gradle / Ivy
/**
********************************************************************************
*** NewAttributeAction.java ***
*** generated by AnoSiteGenerator (ASG), Version: 2.6.3 ***
*** Copyright (C) 2005 - 2010 Anotheria.net, www.anotheria.net ***
*** All Rights Reserved. ***
********************************************************************************
*** Don't edit this code, if you aren't sure ***
*** that you do exactly know what you are doing! ***
*** It's better to invest time in the generator, as into the generated code. ***
********************************************************************************
*/
package net.anotheria.anosite.gen.aswebdata.action;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import net.anotheria.maf.action.ActionForward;
import net.anotheria.maf.action.ActionMapping;
import net.anotheria.maf.bean.FormBean;
import java.util.List;
import java.util.ArrayList;
import net.anotheria.anosite.gen.aswebdata.bean.EditAttributeFB;
import net.anotheria.anosite.gen.aswebdata.data.Attribute;
import net.anotheria.asg.util.helper.cmsview.CMSViewHelperUtil;
import net.anotheria.asg.util.helper.cmsview.CMSViewHelperRegistry;
public class NewAttributeAction extends ShowAttributesAction{
public ActionForward anoDocExecute(ActionMapping mapping, FormBean af, HttpServletRequest req, HttpServletResponse res) throws Exception{
EditAttributeFB form = new EditAttributeFB() ;
form.setId("");
addBeanToRequest(req, "EditASWebDataAttributeForm" , form);
addBeanToRequest(req, "save.label.prefix", "Save");
addBeanToRequest(req, "apply.label.prefix" , "Apply");
addBeanToRequest(req, "objectInfoString" , "none");
addFieldExplanations(req, null);
return mapping.findForward("success");
} //
private void addFieldExplanations(HttpServletRequest req, Attribute attribute) {
if (!CMSViewHelperRegistry.getCMSViewHelpers("ASWebData.Attribute").isEmpty()) {
String fieldDescription = null;
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASWebData.Attribute", attribute, "name");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.name", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASWebData.Attribute", attribute, "key");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.key", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASWebData.Attribute", attribute, "value");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.value", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASWebData.Attribute", attribute, "subattributes");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.subattributes", fieldDescription);
fieldDescription = CMSViewHelperUtil.getFieldExplanation("ASWebData.Attribute", attribute, "guards");
if (fieldDescription!=null && fieldDescription.length()>0)
req.setAttribute("description.guards", fieldDescription);
} //
} //addFieldExplanations END
}