org.omg.spec.dd.di.Diagram Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.bonitasoft.spec.bpmn
Show all versions of org.bonitasoft.spec.bpmn
Contains the Bonita Process Domain Logic.
The newest version!
/**
* Copyright (C) 2023 BonitaSoft S.A.
* BonitaSoft, 32 rue Gustave Eiffel - 38000 Grenoble
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2.0 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package org.omg.spec.dd.di;
import org.eclipse.emf.ecore.EObject;
/**
*
* A representation of the model object 'Diagram'.
*
*
*
* The following features are supported:
*
*
* - {@link org.omg.spec.dd.di.Diagram#getDocumentation Documentation}
* - {@link org.omg.spec.dd.di.Diagram#getId Id}
* - {@link org.omg.spec.dd.di.Diagram#getName Name}
* - {@link org.omg.spec.dd.di.Diagram#getResolution Resolution}
*
*
* @see org.omg.spec.dd.di.DiPackage#getDiagram()
* @model abstract="true"
* extendedMetaData="name='Diagram' kind='empty'"
* @generated
*/
public interface Diagram extends EObject {
/**
* Returns the value of the 'Documentation' attribute.
*
*
* @return the value of the 'Documentation' attribute.
* @see #setDocumentation(String)
* @see org.omg.spec.dd.di.DiPackage#getDiagram_Documentation()
* @model dataType="org.eclipse.emf.ecore.xml.type.String"
* extendedMetaData="kind='attribute' name='documentation'"
* @generated
*/
String getDocumentation();
/**
* Sets the value of the '{@link org.omg.spec.dd.di.Diagram#getDocumentation Documentation}' attribute.
*
*
* @param value the new value of the 'Documentation' attribute.
* @see #getDocumentation()
* @generated
*/
void setDocumentation(String value);
/**
* Returns the value of the 'Id' attribute.
*
*
* @return the value of the 'Id' attribute.
* @see #setId(String)
* @see org.omg.spec.dd.di.DiPackage#getDiagram_Id()
* @model id="true" dataType="org.eclipse.emf.ecore.xml.type.ID"
* extendedMetaData="kind='attribute' name='id'"
* @generated
*/
String getId();
/**
* Sets the value of the '{@link org.omg.spec.dd.di.Diagram#getId Id}' attribute.
*
*
* @param value the new value of the 'Id' attribute.
* @see #getId()
* @generated
*/
void setId(String value);
/**
* Returns the value of the 'Name' attribute.
*
*
* @return the value of the 'Name' attribute.
* @see #setName(String)
* @see org.omg.spec.dd.di.DiPackage#getDiagram_Name()
* @model dataType="org.eclipse.emf.ecore.xml.type.String"
* extendedMetaData="kind='attribute' name='name'"
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.omg.spec.dd.di.Diagram#getName Name}' attribute.
*
*
* @param value the new value of the 'Name' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the 'Resolution' attribute.
*
*
* @return the value of the 'Resolution' attribute.
* @see #isSetResolution()
* @see #unsetResolution()
* @see #setResolution(double)
* @see org.omg.spec.dd.di.DiPackage#getDiagram_Resolution()
* @model unsettable="true" dataType="org.eclipse.emf.ecore.xml.type.Double"
* extendedMetaData="kind='attribute' name='resolution'"
* @generated
*/
double getResolution();
/**
* Sets the value of the '{@link org.omg.spec.dd.di.Diagram#getResolution Resolution}' attribute.
*
*
* @param value the new value of the 'Resolution' attribute.
* @see #isSetResolution()
* @see #unsetResolution()
* @see #getResolution()
* @generated
*/
void setResolution(double value);
/**
* Unsets the value of the '{@link org.omg.spec.dd.di.Diagram#getResolution Resolution}' attribute.
*
*
* @see #isSetResolution()
* @see #getResolution()
* @see #setResolution(double)
* @generated
*/
void unsetResolution();
/**
* Returns whether the value of the '{@link org.omg.spec.dd.di.Diagram#getResolution Resolution}' attribute is set.
*
*
* @return whether the value of the 'Resolution' attribute is set.
* @see #unsetResolution()
* @see #getResolution()
* @see #setResolution(double)
* @generated
*/
boolean isSetResolution();
} // Diagram
© 2015 - 2025 Weber Informatics LLC | Privacy Policy