blob: 1516d875bc475ced76742f9f1975678076523b06 [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.infogrid.model.gridsource;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.xtext.common.types.JvmTypeReference;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Input</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.infogrid.model.gridsource.CxGridSourceInput#getInputType <em>Input Type</em>}</li>
* <li>{@link org.eclipse.osbp.infogrid.model.gridsource.CxGridSourceInput#getInputTypeFQN <em>Input Type FQN</em>}</li>
* <li>{@link org.eclipse.osbp.infogrid.model.gridsource.CxGridSourceInput#getFilters <em>Filters</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.infogrid.model.gridsource.CxGridSourcePackage#getCxGridSourceInput()
* @model
* @generated
*/
public interface CxGridSourceInput extends EObject {
/**
* Returns the value of the '<em><b>Input Type</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Input Type</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Input Type</em>' containment reference.
* @see #setInputType(JvmTypeReference)
* @see org.eclipse.osbp.infogrid.model.gridsource.CxGridSourcePackage#getCxGridSourceInput_InputType()
* @model containment="true"
* @generated
*/
JvmTypeReference getInputType();
/**
* Sets the value of the '{@link org.eclipse.osbp.infogrid.model.gridsource.CxGridSourceInput#getInputType <em>Input Type</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Input Type</em>' containment reference.
* @see #getInputType()
* @generated
*/
void setInputType(JvmTypeReference value);
/**
* Returns the value of the '<em><b>Input Type FQN</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Input Type FQN</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Input Type FQN</em>' attribute.
* @see #setInputTypeFQN(String)
* @see org.eclipse.osbp.infogrid.model.gridsource.CxGridSourcePackage#getCxGridSourceInput_InputTypeFQN()
* @model
* @generated
*/
String getInputTypeFQN();
/**
* Sets the value of the '{@link org.eclipse.osbp.infogrid.model.gridsource.CxGridSourceInput#getInputTypeFQN <em>Input Type FQN</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Input Type FQN</em>' attribute.
* @see #getInputTypeFQN()
* @generated
*/
void setInputTypeFQN(String value);
/**
* Returns the value of the '<em><b>Filters</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.osbp.infogrid.model.gridsource.CxGridSourceEQFilter}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Filters</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Filters</em>' containment reference list.
* @see org.eclipse.osbp.infogrid.model.gridsource.CxGridSourcePackage#getCxGridSourceInput_Filters()
* @model containment="true"
* @generated
*/
EList<CxGridSourceEQFilter> getFilters();
} // CxGridSourceInput