blob: 0ff1c547e5d84b4c81d008e484a9ce132344acb1 [file] [log] [blame]
/**
* All rights reserved by Loetz GmbH&Co.KG Heidelberg 2015.
*
* Contributors:
* Florian Pirchner - initial API and implementation
*/
package org.eclipse.osbp.ecview.extension.model;
import org.eclipse.osbp.ecview.core.common.model.binding.YValueBindingEndpoint;
import org.eclipse.osbp.ecview.core.common.model.core.YValueBindable;
import org.eclipse.osbp.ecview.core.common.model.datatypes.YDatadescription;
import org.eclipse.osbp.ecview.core.extension.model.extension.YInput;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>YRich Text Area</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.ecview.extension.model.YRichTextArea#getDatadescription <em>Datadescription</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.extension.model.YRichTextArea#getBlobValue <em>Blob Value</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.extension.model.YRichTextArea#getValue <em>Value</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.extension.model.YRichTextArea#isUseBlob <em>Use Blob</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.ecview.extension.model.YECviewPackage#getYRichTextArea()
* @model
* @generated
*/
public interface YRichTextArea extends YInput, YValueBindable {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
String copyright = "All rights reserved by Loetz GmbH und CoKG Heidelberg 2015.\n\nContributors:\n Florian Pirchner - initial API and implementation";
/**
* Returns the value of the '<em><b>Datadescription</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Datadescription</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Datadescription</em>' reference.
* @see #setDatadescription(YDatadescription)
* @see org.eclipse.osbp.ecview.extension.model.YECviewPackage#getYRichTextArea_Datadescription()
* @model
* @generated
*/
YDatadescription getDatadescription();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.extension.model.YRichTextArea#getDatadescription <em>Datadescription</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Datadescription</em>' reference.
* @see #getDatadescription()
* @generated
*/
void setDatadescription(YDatadescription value);
/**
* Returns the value of the '<em><b>Blob Value</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Blob 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>Blob Value</em>' attribute.
* @see #setBlobValue(byte[])
* @see org.eclipse.osbp.ecview.extension.model.YECviewPackage#getYRichTextArea_BlobValue()
* @model transient="true"
* @generated
*/
byte[] getBlobValue();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.extension.model.YRichTextArea#getBlobValue <em>Blob Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Blob Value</em>' attribute.
* @see #getBlobValue()
* @generated
*/
void setBlobValue(byte[] 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.osbp.ecview.extension.model.YECviewPackage#getYRichTextArea_Value()
* @model transient="true"
* @generated
*/
String getValue();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.extension.model.YRichTextArea#getValue <em>Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Value</em>' attribute.
* @see #getValue()
* @generated
*/
void setValue(String value);
/**
* Returns the value of the '<em><b>Use Blob</b></em>' attribute.
* The default value is <code>"false"</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Use Blob</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Use Blob</em>' attribute.
* @see #setUseBlob(boolean)
* @see org.eclipse.osbp.ecview.extension.model.YECviewPackage#getYRichTextArea_UseBlob()
* @model default="false"
* @generated
*/
boolean isUseBlob();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.extension.model.YRichTextArea#isUseBlob <em>Use Blob</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Use Blob</em>' attribute.
* @see #isUseBlob()
* @generated
*/
void setUseBlob(boolean value);
/**
* Creates the endpoint for blob bindings.
*/
YValueBindingEndpoint createBlobValueEndpoint();
} // YRichTextArea