All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.tapestry5.corelib.internal.FormSupportImpl Maven / Gradle / Ivy

Go to download

Central module for Tapestry, containing interfaces to the Java Servlet API and all core services and components.

There is a newer version: 5.8.6
Show newest version
// Copyright 2006, 2007, 2008, 2009, 2010 The Apache Software Foundation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package org.apache.tapestry5.corelib.internal;

import java.util.List;

import org.apache.tapestry5.ComponentAction;
import org.apache.tapestry5.ComponentResources;
import org.apache.tapestry5.Field;
import org.apache.tapestry5.ioc.Locatable;
import org.apache.tapestry5.ioc.Location;
import org.apache.tapestry5.ioc.internal.util.CollectionFactory;
import org.apache.tapestry5.ioc.internal.util.InternalUtils;
import org.apache.tapestry5.ioc.util.IdAllocator;
import org.apache.tapestry5.services.ClientBehaviorSupport;

/**
 * Provides support to components enclosed by a form when the form is rendering (allowing the components to registry
 * form submit callback commands), and also during form submission time.
 * 

* TODO: Most methods should only be invokable depending on whether the form is rendering or processing a submission. */ public class FormSupportImpl implements InternalFormSupport, Locatable { private final ComponentResources resources; private final ClientBehaviorSupport clientBehaviorSupport; private final boolean clientValidationEnabled; private final IdAllocator idAllocator; private final String clientId; private final ComponentActionSink actionSink; private final String formValidationId; private List commands; private String encodingType; /** * Constructor used when processing a form submission. */ public FormSupportImpl(ComponentResources resources, String formValidationId) { this(resources, null, null, null, false, null, formValidationId); } /** * Full constructor (specifically constructor for render time). */ public FormSupportImpl(ComponentResources resources, String clientId, ComponentActionSink actionSink, ClientBehaviorSupport clientBehaviorSupport, boolean clientValidationEnabled, IdAllocator idAllocator, String formValidationId) { this.resources = resources; this.clientId = clientId; this.actionSink = actionSink; this.clientBehaviorSupport = clientBehaviorSupport; this.clientValidationEnabled = clientValidationEnabled; this.idAllocator = idAllocator; this.formValidationId = formValidationId; } public Location getLocation() { return resources.getLocation(); } public String getFormComponentId() { return resources.getCompleteId(); } public String allocateControlName(String id) { return idAllocator.allocateId(id); } public void store(T component, ComponentAction action) { actionSink.store(component, action); } public void storeAndExecute(T component, ComponentAction action) { actionSink.store(component, action); action.execute(component); } public void defer(Runnable command) { assert command != null; if (commands == null) commands = CollectionFactory.newList(); commands.add(command); } public void executeDeferred() { if (commands == null) return; for (Runnable r : commands) r.run(); commands.clear(); } public String getClientId() { return clientId; } public String getEncodingType() { return encodingType; } public void setEncodingType(String encodingType) { assert InternalUtils.isNonBlank(encodingType); if (this.encodingType != null && !this.encodingType.equals(encodingType)) throw new IllegalStateException(InternalMessages.conflictingEncodingType(this.encodingType, encodingType)); this.encodingType = encodingType; } public void addValidation(Field field, String validationName, String message, Object constraint) { if (clientValidationEnabled) clientBehaviorSupport.addValidation(field, validationName, message, constraint); } public boolean isClientValidationEnabled() { return clientValidationEnabled; } public String getFormValidationId() { return formValidationId; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy