Java tutorial
// license-header java merge-point package es.pode.buscador.presentacion.avanzado.areaCurricular; public class AreaCurricularCancelarFormImpl extends org.apache.struts.validator.ValidatorForm implements java.io.Serializable { private java.lang.String tipoLayoutBuscador; private java.lang.Object[] tipoLayoutBuscadorValueList; private java.lang.Object[] tipoLayoutBuscadorLabelList; public AreaCurricularCancelarFormImpl() { } /** * Resets the given <code>tipoLayoutBuscador</code>. */ public void resetTipoLayoutBuscador() { this.tipoLayoutBuscador = null; } public void setTipoLayoutBuscador(java.lang.String tipoLayoutBuscador) { this.tipoLayoutBuscador = tipoLayoutBuscador; } /** * */ public java.lang.String getTipoLayoutBuscador() { return this.tipoLayoutBuscador; } public java.lang.Object[] getTipoLayoutBuscadorBackingList() { java.lang.Object[] values = this.tipoLayoutBuscadorValueList; java.lang.Object[] labels = this.tipoLayoutBuscadorLabelList; if (values == null || values.length == 0) { return values; } if (labels == null || labels.length == 0) { labels = values; } final int length = java.lang.Math.min(labels.length, values.length); java.lang.Object[] backingList = new java.lang.Object[length]; for (int i = 0; i < length; i++) { backingList[i] = new LabelValue(labels[i], values[i]); } return backingList; } public java.lang.Object[] getTipoLayoutBuscadorValueList() { return this.tipoLayoutBuscadorValueList; } public void setTipoLayoutBuscadorValueList(java.lang.Object[] tipoLayoutBuscadorValueList) { this.tipoLayoutBuscadorValueList = tipoLayoutBuscadorValueList; } public java.lang.Object[] getTipoLayoutBuscadorLabelList() { return this.tipoLayoutBuscadorLabelList; } public void setTipoLayoutBuscadorLabelList(java.lang.Object[] tipoLayoutBuscadorLabelList) { this.tipoLayoutBuscadorLabelList = tipoLayoutBuscadorLabelList; } public void setTipoLayoutBuscadorBackingList(java.util.Collection items, java.lang.String valueProperty, java.lang.String labelProperty) { if (valueProperty == null || labelProperty == null) { throw new IllegalArgumentException( "AreaCurricularCancelarFormImpl.setTipoLayoutBuscadorBackingList requires non-null property arguments"); } this.tipoLayoutBuscadorValueList = null; this.tipoLayoutBuscadorLabelList = null; if (items != null) { this.tipoLayoutBuscadorValueList = new java.lang.Object[items.size()]; this.tipoLayoutBuscadorLabelList = new java.lang.Object[items.size()]; try { int i = 0; for (java.util.Iterator iterator = items.iterator(); iterator.hasNext(); i++) { final java.lang.Object item = iterator.next(); this.tipoLayoutBuscadorValueList[i] = org.apache.commons.beanutils.PropertyUtils .getProperty(item, valueProperty); this.tipoLayoutBuscadorLabelList[i] = org.apache.commons.beanutils.PropertyUtils .getProperty(item, labelProperty); } } catch (Exception ex) { throw new java.lang.RuntimeException( "AreaCurricularCancelarFormImpl.setTipoLayoutBuscadorBackingList encountered an exception", ex); } } } /** * @see org.apache.struts.validator.ValidatorForm#reset(org.apache.struts.action.ActionMapping,javax.servlet.http.HttpServletRequest) */ public void reset(org.apache.struts.action.ActionMapping mapping, javax.servlet.http.HttpServletRequest request) { } public java.lang.String toString() { org.apache.commons.lang.builder.ToStringBuilder builder = new org.apache.commons.lang.builder.ToStringBuilder( this); builder.append("tipoLayoutBuscador", this.tipoLayoutBuscador); return builder.toString(); } /** * Allows you to clean all values from this form. Objects will be set to <code>null</code>, numeric values will be * set to zero and boolean values will be set to <code>false</code>. Backinglists for selectable fields will * also be set to <code>null</code>. */ public void clean() { this.tipoLayoutBuscador = null; this.tipoLayoutBuscadorValueList = null; this.tipoLayoutBuscadorLabelList = null; } /** * Override to provide population of current form with request parameters when validation fails. * * @see org.apache.struts.action.ActionForm#validate(org.apache.struts.action.ActionMapping, javax.servlet.http.HttpServletRequest) */ public org.apache.struts.action.ActionErrors validate(org.apache.struts.action.ActionMapping mapping, javax.servlet.http.HttpServletRequest request) { final org.apache.struts.action.ActionErrors errors = super.validate(mapping, request); if (errors != null && !errors.isEmpty()) { // we populate the current form with only the request parameters Object currentForm = request.getSession().getAttribute("form"); // if we can't get the 'form' from the session, try from the request if (currentForm == null) { currentForm = request.getAttribute("form"); } if (currentForm != null) { final java.util.Map parameters = new java.util.HashMap(); for (final java.util.Enumeration names = request.getParameterNames(); names.hasMoreElements();) { final String name = String.valueOf(names.nextElement()); parameters.put(name, request.getParameter(name)); } try { org.apache.commons.beanutils.BeanUtils.populate(currentForm, parameters); } catch (java.lang.Exception populateException) { // ignore if we have an exception here (we just don't populate). } } } return errors; } public final static class LabelValue { private java.lang.Object label = null; private java.lang.Object value = null; public LabelValue(Object label, java.lang.Object value) { this.label = label; this.value = value; } public java.lang.Object getLabel() { return this.label; } public java.lang.Object getValue() { return this.value; } public java.lang.String toString() { return label + "=" + value; } } }