blob: 2ee758ad774bb67d945f6ba36e4892617b8e51eb [file] [log] [blame]
/**
*
* Copyright (c) 2011, 2016 - 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:
* Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
*
*/
package org.eclipse.osbp.ecview.semantic.uimodel;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Ui Bean Validation Validator</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.UiBeanValidationValidator#getErrorCode <em>Error Code</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiBeanValidationValidator()
* @model
* @generated
*/
public interface UiBeanValidationValidator extends UiValidator {
/**
* Returns the value of the '<em><b>Error Code</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Error Code</em>' containment reference isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Error Code</em>' containment reference.
* @see #setErrorCode(UiErrorCode)
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiBeanValidationValidator_ErrorCode()
* @model containment="true" resolveProxies="true"
* @generated
*/
UiErrorCode getErrorCode();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.semantic.uimodel.UiBeanValidationValidator#getErrorCode <em>Error Code</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Error Code</em>' containment reference.
* @see #getErrorCode()
* @generated
*/
void setErrorCode(UiErrorCode value);
} // UiBeanValidationValidator