/******************************************************************************* * Copyright (c) 2006-2012 * Software Technology Group, Dresden University of Technology * DevBoost GmbH, Berlin, Amtsgericht Charlottenburg, HRB 140026 * * 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: * Software Technology Group - TU Dresden, Germany; * DevBoost GmbH - Berlin, Germany * - initial API and implementation ******************************************************************************/ /** * <copyright> * </copyright> * * $Id$ */ package org.oasisopen.names.tc.opendocument.xmlns.form; import org.oasisopen.names.tc.opendocument.xmlns.text.CommonFormControlContent; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Generic Control Type</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.form.GenericControlType#getBind <em>Bind</em>}</li> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.form.GenericControlType#getControlImplementation <em>Control Implementation</em>}</li> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.form.GenericControlType#getId <em>Id</em>}</li> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.form.GenericControlType#getName <em>Name</em>}</li> * </ul> * </p> * * @see org.oasisopen.names.tc.opendocument.xmlns.form.FormPackage#getGenericControlType() * @model extendedMetaData="name='generic-control_._type' kind='elementOnly'" * @generated */ public interface GenericControlType extends CommonFormControlContent { /** * Returns the value of the '<em><b>Bind</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Bind</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Bind</em>' attribute. * @see #setBind(String) * @see org.oasisopen.names.tc.opendocument.xmlns.form.FormPackage#getGenericControlType_Bind() * @model dataType="org.oasisopen.names.tc.opendocument.xmlns.text.String" * extendedMetaData="kind='attribute' name='bind' namespace='http://www.w3.org/2002/xforms'" * @generated */ String getBind(); /** * Sets the value of the '{@link org.oasisopen.names.tc.opendocument.xmlns.form.GenericControlType#getBind <em>Bind</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Bind</em>' attribute. * @see #getBind() * @generated */ void setBind(String value); /** * Returns the value of the '<em><b>Control Implementation</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Control Implementation</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Control Implementation</em>' attribute. * @see #setControlImplementation(String) * @see org.oasisopen.names.tc.opendocument.xmlns.form.FormPackage#getGenericControlType_ControlImplementation() * @model dataType="org.oasisopen.names.tc.opendocument.xmlns.text.NamespacedToken" * extendedMetaData="kind='attribute' name='control-implementation' namespace='##targetNamespace'" * @generated */ String getControlImplementation(); /** * Sets the value of the '{@link org.oasisopen.names.tc.opendocument.xmlns.form.GenericControlType#getControlImplementation <em>Control Implementation</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Control Implementation</em>' attribute. * @see #getControlImplementation() * @generated */ void setControlImplementation(String value); /** * Returns the value of the '<em><b>Id</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Id</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Id</em>' attribute. * @see #setId(String) * @see org.oasisopen.names.tc.opendocument.xmlns.form.FormPackage#getGenericControlType_Id() * @model id="true" dataType="org.oasisopen.names.tc.opendocument.xmlns.text.ID" required="true" * extendedMetaData="kind='attribute' name='id' namespace='##targetNamespace'" * @generated */ String getId(); /** * Sets the value of the '{@link org.oasisopen.names.tc.opendocument.xmlns.form.GenericControlType#getId <em>Id</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Id</em>' attribute. * @see #getId() * @generated */ void setId(String value); /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see org.oasisopen.names.tc.opendocument.xmlns.form.FormPackage#getGenericControlType_Name() * @model dataType="org.oasisopen.names.tc.opendocument.xmlns.text.String" * extendedMetaData="kind='attribute' name='name' namespace='##targetNamespace'" * @generated */ String getName(); /** * Sets the value of the '{@link org.oasisopen.names.tc.opendocument.xmlns.form.GenericControlType#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); } // GenericControlType