blob: 1a4701ab34d26112399d0c8268dd20f563d58ba4 [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>Image</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.osbp.xtext.reportdsl.Image#getSize <em>Size</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.reportdsl.Image#getScale <em>Scale</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.reportdsl.Image#getSourceType <em>Source Type</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.reportdsl.Image#getFilename <em>Filename</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getImage()
* @model
* @generated
*/
public interface Image extends Element, WithStyle {
/**
* Returns the value of the '<em><b>Size</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.osbp.xtext.reportdsl.ImageSizeEnum}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Size</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Size</em>' attribute.
* @see org.eclipse.osbp.xtext.reportdsl.ImageSizeEnum
* @see #setSize(ImageSizeEnum)
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getImage_Size()
* @model unique="false"
* @generated
*/
ImageSizeEnum getSize();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.reportdsl.Image#getSize <em>Size</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Size</em>' attribute.
* @see org.eclipse.osbp.xtext.reportdsl.ImageSizeEnum
* @see #getSize()
* @generated
*/
void setSize(ImageSizeEnum value);
/**
* Returns the value of the '<em><b>Scale</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Scale</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Scale</em>' attribute.
* @see #setScale(double)
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getImage_Scale()
* @model unique="false"
* @generated
*/
double getScale();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.reportdsl.Image#getScale <em>Scale</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Scale</em>' attribute.
* @see #getScale()
* @generated
*/
void setScale(double value);
/**
* Returns the value of the '<em><b>Source Type</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.osbp.xtext.reportdsl.ImageSourceEnum}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Source 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>Source Type</em>' attribute.
* @see org.eclipse.osbp.xtext.reportdsl.ImageSourceEnum
* @see #setSourceType(ImageSourceEnum)
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getImage_SourceType()
* @model unique="false"
* @generated
*/
ImageSourceEnum getSourceType();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.reportdsl.Image#getSourceType <em>Source Type</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Source Type</em>' attribute.
* @see org.eclipse.osbp.xtext.reportdsl.ImageSourceEnum
* @see #getSourceType()
* @generated
*/
void setSourceType(ImageSourceEnum value);
/**
* Returns the value of the '<em><b>Filename</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Filename</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Filename</em>' attribute.
* @see #setFilename(String)
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getImage_Filename()
* @model unique="false"
* @generated
*/
String getFilename();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.reportdsl.Image#getFilename <em>Filename</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Filename</em>' attribute.
* @see #getFilename()
* @generated
*/
void setFilename(String value);
} // Image