blob: 570a4e6ce58adf6ba01d4cbdd21ebcb20048236f [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 v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
*/
package org.eclipse.osbp.infogrid.model.gridsource;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.osbp.infogrid.model.gridsource.style.CxGridPropStyle;
/**
* <!-- begin-user-doc --> A representation of the model object '
* <em><b>Cx Grid Property</b></em>'. <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.osbp.infogrid.model.gridsource.CxGridProperty#getPath <em>Path</em>}</li>
* <li>{@link org.eclipse.osbp.infogrid.model.gridsource.CxGridProperty#getStyle <em>Style</em>}</li>
* <li>{@link org.eclipse.osbp.infogrid.model.gridsource.CxGridProperty#getDotPath <em>Dot Path</em>}</li>
* <li>{@link org.eclipse.osbp.infogrid.model.gridsource.CxGridProperty#isEditable <em>Editable</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.osbp.infogrid.model.gridsource.CxGridSourcePackage#getCxGridProperty()
* @model
* @generated
*/
public interface CxGridProperty extends EObject {
/**
* Returns the value of the '<em><b>Path</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Path</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>Path</em>' containment reference.
* @see #setPath(CxGridNestedField)
* @see org.eclipse.osbp.infogrid.model.gridsource.CxGridSourcePackage#getCxGridProperty_Path()
* @model containment="true"
* @generated
*/
CxGridNestedField getPath();
/**
* Sets the value of the '{@link org.eclipse.osbp.infogrid.model.gridsource.CxGridProperty#getPath <em>Path</em>}' containment reference.
* <!-- begin-user-doc --> <!--
* end-user-doc -->
* @param value the new value of the '<em>Path</em>' containment reference.
* @see #getPath()
* @generated
*/
void setPath(CxGridNestedField value);
/**
* Returns the value of the '<em><b>Style</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Style</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>Style</em>' containment reference.
* @see #setStyle(CxGridPropStyle)
* @see org.eclipse.osbp.infogrid.model.gridsource.CxGridSourcePackage#getCxGridProperty_Style()
* @model containment="true"
* @generated
*/
CxGridPropStyle getStyle();
/**
* Sets the value of the '{@link org.eclipse.osbp.infogrid.model.gridsource.CxGridProperty#getStyle <em>Style</em>}' containment reference.
* <!-- begin-user-doc --> <!--
* end-user-doc -->
* @param value the new value of the '<em>Style</em>' containment reference.
* @see #getStyle()
* @generated
*/
void setStyle(CxGridPropStyle value);
/**
* Returns the value of the '<em><b>Dot Path</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Dot Path</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Dot Path</em>' attribute.
* @see #setDotPath(String)
* @see org.eclipse.osbp.infogrid.model.gridsource.CxGridSourcePackage#getCxGridProperty_DotPath()
* @model
* @generated
*/
String getDotPath();
/**
* Sets the value of the '{@link org.eclipse.osbp.infogrid.model.gridsource.CxGridProperty#getDotPath <em>Dot Path</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Dot Path</em>' attribute.
* @see #getDotPath()
* @generated
*/
void setDotPath(String value);
/**
* Returns the value of the '<em><b>Editable</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Editable</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Editable</em>' attribute.
* @see #setEditable(boolean)
* @see org.eclipse.osbp.infogrid.model.gridsource.CxGridSourcePackage#getCxGridProperty_Editable()
* @model
* @generated
*/
boolean isEditable();
/**
* Sets the value of the '{@link org.eclipse.osbp.infogrid.model.gridsource.CxGridProperty#isEditable <em>Editable</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Editable</em>' attribute.
* @see #isEditable()
* @generated
*/
void setEditable(boolean value);
} // CxGridProperty