blob: f044956ee626024ea9c8e37fc27abe97d4888b84 [file] [log] [blame]
/**
* All rights reserved by Loetz GmbH und CoKG Heidelberg 2015.
*
* Contributors:
* Florian Pirchner - initial API and implementation
*/
package org.eclipse.osbp.ecview.extension.model;
import org.eclipse.emf.common.util.EMap;
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>YPrefixed Masked Text Field</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.osbp.ecview.extension.model.YPrefixedMaskedTextField#getDatadescription <em>Datadescription</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.extension.model.YPrefixedMaskedTextField#getValue <em>Value</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.extension.model.YPrefixedMaskedTextField#getMask <em>Mask</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.extension.model.YPrefixedMaskedTextField#getPrefixes <em>Prefixes</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.osbp.ecview.extension.model.YECviewPackage#getYPrefixedMaskedTextField()
* @model
* @generated
*/
public interface YPrefixedMaskedTextField 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#getYPrefixedMaskedTextField_Datadescription()
* @model
* @generated
*/
YDatadescription getDatadescription();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.extension.model.YPrefixedMaskedTextField#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>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#getYPrefixedMaskedTextField_Value()
* @model transient="true"
* @generated
*/
String getValue();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.extension.model.YPrefixedMaskedTextField#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>Mask</b></em>' attribute.
* The default value is <code>""</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Mask</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Mask</em>' attribute.
* @see #setMask(String)
* @see org.eclipse.osbp.ecview.extension.model.YECviewPackage#getYPrefixedMaskedTextField_Mask()
* @model default=""
* @generated
*/
String getMask();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.extension.model.YPrefixedMaskedTextField#getMask <em>Mask</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Mask</em>' attribute.
* @see #getMask()
* @generated
*/
void setMask(String value);
/**
* Returns the value of the '<em><b>Prefixes</b></em>' map.
* The key is of type {@link java.lang.String},
* and the value is of type {@link java.lang.String},
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Prefixes</em>' map isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Prefixes</em>' map.
* @see org.eclipse.osbp.ecview.extension.model.YECviewPackage#getYPrefixedMaskedTextField_Prefixes()
* @model mapType="org.eclipse.osbp.ecview.core.common.model.core.YStringToStringMap<org.eclipse.emf.ecore.EString, org.eclipse.emf.ecore.EString>"
* @generated
*/
EMap<String, String> getPrefixes();
} // YPrefixedMaskedTextField