blob: 6a22d36a3e3ac1e89685b5a1fc905132216155b4 [file] [log] [blame]
/**
* Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.ecview.semantic.uimodel;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Ui Text Field</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.UiTextField#getMaxLength <em>Max Length</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.UiTextField#getMinLength <em>Min Length</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.UiTextField#getRegex <em>Regex</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiTextField()
* @model
* @generated
*/
public interface UiTextField extends UiField, UiMobileField {
/**
* Returns the value of the '<em><b>Max Length</b></em>' attribute.
* The default value is <code>"-1"</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Max Length</em>' attribute isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Max Length</em>' attribute.
* @see #setMaxLength(int)
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiTextField_MaxLength()
* @model default="-1"
* @generated
*/
int getMaxLength();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.semantic.uimodel.UiTextField#getMaxLength <em>Max Length</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Max Length</em>' attribute.
* @see #getMaxLength()
* @generated
*/
void setMaxLength(int value);
/**
* Returns the value of the '<em><b>Min Length</b></em>' attribute.
* The default value is <code>"-1"</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Min Length</em>' attribute isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Min Length</em>' attribute.
* @see #setMinLength(int)
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiTextField_MinLength()
* @model default="-1"
* @generated
*/
int getMinLength();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.semantic.uimodel.UiTextField#getMinLength <em>Min Length</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Min Length</em>' attribute.
* @see #getMinLength()
* @generated
*/
void setMinLength(int value);
/**
* Returns the value of the '<em><b>Regex</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Regex</em>' attribute isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Regex</em>' attribute.
* @see #setRegex(String)
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiTextField_Regex()
* @model
* @generated
*/
String getRegex();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.semantic.uimodel.UiTextField#getRegex <em>Regex</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Regex</em>' attribute.
* @see #getRegex()
* @generated
*/
void setRegex(String value);
} // UiTextField