javax.faces.component.UIForm Maven / Gradle / Ivy
/*
* $Id: UIForm.java,v 1.51 2006/01/11 14:57:04 edburns Exp $
*/
/*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the License). You may not use this file except in
* compliance with the License.
*
* You can obtain a copy of the License at
* https://javaserverfaces.dev.java.net/CDDL.html or
* legal/CDDLv1.0.txt.
* See the License for the specific language governing
* permission and limitations under the License.
*
* When distributing Covered Code, include this CDDL
* Header Notice in each file and include the License file
* at legal/CDDLv1.0.txt.
* If applicable, add the following below the CDDL Header,
* with the fields enclosed by brackets [] replaced by
* your own identifying information:
* "Portions Copyrighted [year] [name of copyright owner]"
*
* [Name of File] [ver.__] [Date]
*
* Copyright 2005 Sun Microsystems Inc. All Rights Reserved
*/
package javax.faces.component;
import java.util.Iterator;
import javax.el.ELException;
import javax.el.ValueExpression;
import javax.faces.FacesException;
import javax.faces.context.FacesContext;
/**
* UIForm is a {@link UIComponent} that represents an
* input form to be presented to the user, and whose child components represent
* (among other things) the input fields to be included when the form is
* submitted.
*
* By default, the rendererType
property must be set to
* "javax.faces.Form
". This value can be changed by calling the
* setRendererType()
method.
*/
public class UIForm extends UIComponentBase implements NamingContainer {
// ------------------------------------------------------ Manifest Constants
/**
* The standard component type for this component.
*/
public static final String COMPONENT_TYPE = "javax.faces.Form";
/**
* The standard component family for this component.
*/
public static final String COMPONENT_FAMILY = "javax.faces.Form";
// ------------------------------------------------------------ Constructors
/**
* Create a new {@link UIForm} instance with default property
* values.
*/
public UIForm() {
super();
setRendererType("javax.faces.Form");
}
// ------------------------------------------------------ Instance Variables
// -------------------------------------------------------------- Properties
public String getFamily() {
return (COMPONENT_FAMILY);
}
/**
* The form submitted flag for this {@link UIForm}.
*/
private boolean submitted = false;
/**
* Returns the current value of the submitted
* property. The default value is false
. See {@link
* #setSubmitted} for details.
*
*/
public boolean isSubmitted() {
return (this.submitted);
}
/**
* If this UIForm
instance (as
* opposed to other forms in the page) is experiencing a submit
* during this request processing lifecycle, this method must be
* called, with true
as the argument, during the {@link
* UIComponent#decode} for this UIForm
instance. If
* this UIForm
instance is
* not experiencing a submit, this method must be
* called, with false
as the argument, during the
* {@link UIComponent#decode} for this UIForm
* instance.
*
* The value of a UIForm
's submitted property must
* not be saved as part of its state.
*/
public void setSubmitted(boolean submitted) {
this.submitted = submitted;
}
/**
* The prependId flag.
*/
private boolean prependId = true;
private boolean prependIdSet = false;
public boolean isPrependId() {
if (this.prependIdSet) {
return (this.prependId);
}
ValueExpression ve = getValueExpression("prependId");
if (ve != null) {
try {
return (Boolean.TRUE.equals(ve.getValue(getFacesContext().getELContext())));
}
catch (ELException e) {
throw new FacesException(e);
}
} else {
return (this.prependId);
}
}
public void setPrependId(boolean prependId) {
// if the prependId value is changing.
if (prependId != this.prependId) {
this.prependId = prependId;
}
this.prependIdSet = true;
}
// ----------------------------------------------------- UIComponent Methods
/**
* Override {@link UIComponent#processDecodes} to ensure that the
* form is decoded before its children. This is
* necessary to allow the submitted
property to be
* correctly set.
*
* @throws NullPointerException {@inheritDoc}
*/
public void processDecodes(FacesContext context) {
if (context == null) {
throw new NullPointerException();
}
// Process this component itself
decode(context);
// if we're not the submitted form, don't process children.
if (!isSubmitted()) {
return;
}
// Process all facets and children of this component
Iterator kids = getFacetsAndChildren();
while (kids.hasNext()) {
UIComponent kid = (UIComponent) kids.next();
kid.processDecodes(context);
}
}
/**
* Override {@link UIComponent#processValidators} to ensure that
* the children of this UIForm
instance are only
* processed if {@link #isSubmitted} returns true
.
*
* @throws NullPointerException {@inheritDoc}
*/
public void processValidators(FacesContext context) {
if (context == null) {
throw new NullPointerException();
}
if (!isSubmitted()) {
return;
}
// Process all the facets and children of this component
Iterator kids = getFacetsAndChildren();
while (kids.hasNext()) {
UIComponent kid = (UIComponent) kids.next();
kid.processValidators(context);
}
}
/**
* Override {@link UIComponent#processUpdates} to ensure that the
* children of this UIForm
instance are only processed
* if {@link #isSubmitted} returns true
.
*
* @throws NullPointerException {@inheritDoc}
*/
public void processUpdates(FacesContext context) {
if (context == null) {
throw new NullPointerException();
}
if (!isSubmitted()) {
return;
}
// Process all facets and children of this component
Iterator kids = getFacetsAndChildren();
while (kids.hasNext()) {
UIComponent kid = (UIComponent) kids.next();
kid.processUpdates(context);
}
}
/**
* Override the {@link UIComponent#getContainerClientId} to allow
* users to disable this form from prepending its clientId
to
* its descendent's clientIds
depending on the value of
* this form's {@link #isPrependId} property.
*/
public String getContainerClientId(FacesContext context) {
if (this.isPrependId()) {
return super.getContainerClientId(context);
} else {
UIComponent parent = this.getParent();
while (parent != null) {
if (parent instanceof NamingContainer) {
return parent.getContainerClientId(context);
}
parent = parent.getParent();
}
}
return null;
}
}