/** * <copyright> * </copyright> * * $Id: Documentation.java,v 1.5 2011/03/30 18:54:25 rbrodt Exp $ */ package org.eclipse.bpel.model; import org.eclipse.wst.wsdl.WSDLElement; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Documentation</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.bpel.model.Documentation#getLang <em>Lang</em>}</li> * <li>{@link org.eclipse.bpel.model.Documentation#getSource <em>Source</em>}</li> * <li>{@link org.eclipse.bpel.model.Documentation#getValue <em>Value</em>}</li> * </ul> * </p> * * @see org.eclipse.bpel.model.BPELPackage#getDocumentation() * @model * @generated */ public interface Documentation extends BPELExtensibleElement { /** * Returns the value of the '<em><b>Lang</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Lang</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Lang</em>' attribute. * @see #setLang(String) * @see org.eclipse.bpel.model.BPELPackage#getDocumentation_Lang() * @model * @generated */ String getLang(); /** * Sets the value of the '{@link org.eclipse.bpel.model.Documentation#getLang <em>Lang</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Lang</em>' attribute. * @see #getLang() */ void setLang(String value); /** * Returns the value of the '<em><b>Source</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Source</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Source</em>' attribute. * @see #setSource(String) * @see org.eclipse.bpel.model.BPELPackage#getDocumentation_Source() * @model * @generated */ String getSource(); /** * Sets the value of the '{@link org.eclipse.bpel.model.Documentation#getSource <em>Source</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Source</em>' attribute. * @see #getSource() */ void setSource(String value); /** * Returns the value of the '<em><b>Value</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Value</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Value</em>' attribute. * @see #setValue(String) * @see org.eclipse.bpel.model.BPELPackage#getDocumentation_Value() * @model * @generated */ String getValue(); /** * Sets the value of the '{@link org.eclipse.bpel.model.Documentation#getValue <em>Value</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Value</em>' attribute. * @see #getValue() */ void setValue(String value); } // Documentation