blob: 2c8833600f827842b98f427ff218beb5a0a4bca4 [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
*
* Based on ideas from Xtext, Xtend, Xcore
*
* Contributors:
* Christophe Loetz (Loetz GmbH&Co.KG) - Initial implementation
*
*/
package org.eclipse.osbp.xtext.reportdsl;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Border Style</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.reportdsl.BorderStyle#getType <em>Type</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.reportdsl.BorderStyle#getWidthValue <em>Width Value</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.reportdsl.BorderStyle#getColor <em>Color</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getBorderStyle()
* @model
* @generated
*/
public interface BorderStyle extends ReportLazyResolver {
/**
* Returns the value of the '<em><b>Type</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.osbp.xtext.reportdsl.BorderTypeEnum}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Type</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Type</em>' attribute.
* @see org.eclipse.osbp.xtext.reportdsl.BorderTypeEnum
* @see #setType(BorderTypeEnum)
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getBorderStyle_Type()
* @model unique="false"
* @generated
*/
BorderTypeEnum getType();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.reportdsl.BorderStyle#getType <em>Type</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Type</em>' attribute.
* @see org.eclipse.osbp.xtext.reportdsl.BorderTypeEnum
* @see #getType()
* @generated
*/
void setType(BorderTypeEnum value);
/**
* Returns the value of the '<em><b>Width Value</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Width 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>Width Value</em>' attribute.
* @see #setWidthValue(double)
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getBorderStyle_WidthValue()
* @model unique="false"
* @generated
*/
double getWidthValue();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.reportdsl.BorderStyle#getWidthValue <em>Width Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Width Value</em>' attribute.
* @see #getWidthValue()
* @generated
*/
void setWidthValue(double value);
/**
* Returns the value of the '<em><b>Color</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Color</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Color</em>' reference.
* @see #setColor(Color)
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getBorderStyle_Color()
* @model
* @generated
*/
Color getColor();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.reportdsl.BorderStyle#getColor <em>Color</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Color</em>' reference.
* @see #getColor()
* @generated
*/
void setColor(Color value);
} // BorderStyle