/******************************************************************************* * Copyright (c) 2007, 2008 Spring IDE Developers * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Spring IDE Developers - initial API and implementation *******************************************************************************/ package org.springframework.ide.eclipse.webflow.core.model; /** * @author Christian Dupuis * @since 2.0 */ public interface IInputAttribute extends IWebflowModelElement { /** * Sets the name. * * @param name the name */ void setName(String name); /** * Sets the scope. * * @param scope the scope */ void setScope(String scope); /** * Sets the required. * * @param required the required */ void setRequired(boolean required); /** * Gets the name. * * @return the name */ String getName(); /** * Gets the scope. * * @return the scope */ String getScope(); /** * Gets the required. * * @return the required */ boolean getRequired(); void setType(String type); String getType(); void setValue(String value); String getValue(); /** * Creates the new. * * @param parent the parent */ void createNew(IWebflowModelElement parent); }