![JAR search and dependency download from the Maven repository](/logo.png)
fr.lip6.move.pnml.symmetricnet.finiteEnumerations.hlapi.FEConstantHLAPI Maven / Gradle / Ivy
/**
* Copyright 2009-2016 Université Paris Ouest and Sorbonne Universités,
* Univ. Paris 06 - CNRS UMR 7606 (LIP6)
*
* 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
*
* Project leader / Initial Contributor:
* Lom Messan Hillah -
*
* Contributors:
* ${ocontributors} - <$oemails}>
*
* Mailing list:
* [email protected]
*/
/**
* (C) Sorbonne Universités, UPMC Univ Paris 06, UMR CNRS 7606 (LIP6)
* 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:
* Lom HILLAH (LIP6) - Initial models and implementation
* Rachid Alahyane (UPMC) - Infrastructure and continuous integration
* Bastien Bouzerau (UPMC) - Architecture
* Guillaume Giffo (UPMC) - Code generation refactoring, High-level API
*
* $Id ggiffo, Thu Feb 11 16:29:02 CET 2016$
*/
package fr.lip6.move.pnml.symmetricnet.finiteEnumerations.hlapi;
import java.nio.channels.FileChannel;
import org.apache.axiom.om.OMElement;
import org.eclipse.emf.common.util.DiagnosticChain;
import fr.lip6.move.pnml.framework.hlapi.HLAPIClass;
import fr.lip6.move.pnml.framework.utils.IdRefLinker;
import fr.lip6.move.pnml.framework.utils.ModelRepository;
import fr.lip6.move.pnml.framework.utils.exception.InnerBuildException;
import fr.lip6.move.pnml.framework.utils.exception.InvalidIDException;
import fr.lip6.move.pnml.framework.utils.exception.OtherException;
import fr.lip6.move.pnml.framework.utils.exception.VoidRepositoryException;
import fr.lip6.move.pnml.symmetricnet.finiteEnumerations.FEConstant;
import fr.lip6.move.pnml.symmetricnet.finiteEnumerations.FiniteEnumeration;
import fr.lip6.move.pnml.symmetricnet.finiteEnumerations.FiniteEnumerationsFactory;
import fr.lip6.move.pnml.symmetricnet.finiteEnumerations.impl.FiniteEnumerationsFactoryImpl;
import fr.lip6.move.pnml.symmetricnet.terms.Declarations;
import fr.lip6.move.pnml.symmetricnet.terms.hlapi.DeclarationsHLAPI;
import fr.lip6.move.pnml.symmetricnet.terms.hlapi.OperatorDeclHLAPI;
import fr.lip6.move.pnml.symmetricnet.terms.hlapi.TermsDeclarationHLAPI;
public class FEConstantHLAPI implements HLAPIClass,TermsDeclarationHLAPI,OperatorDeclHLAPI{
/**
* The contained LLAPI element.
*/
private FEConstant item;
/**
* this constructor allows you to set all 'settable' values
* excepted container.
*/
public FEConstantHLAPI(
java.lang.String id
, java.lang.String name
) throws InvalidIDException ,VoidRepositoryException {//BEGIN CONSTRUCTOR BODY
FiniteEnumerationsFactory fact = FiniteEnumerationsFactoryImpl.eINSTANCE;
synchronized(fact){item = fact.createFEConstant();}
if(id!=null){
item.setId(ModelRepository.getInstance().getCurrentIdRepository().checkId(id, this));
}
if(name!=null){
item.setName(name);
}
}
/**
* this constructor allows you to set all 'settable' values, including container if any.
*/
public FEConstantHLAPI(
java.lang.String id
, java.lang.String name
, DeclarationsHLAPI containerDeclarations
) throws InvalidIDException ,VoidRepositoryException {//BEGIN CONSTRUCTOR BODY
FiniteEnumerationsFactory fact = FiniteEnumerationsFactoryImpl.eINSTANCE;
synchronized(fact){item = fact.createFEConstant();}
if(id!=null){
item.setId(ModelRepository.getInstance().getCurrentIdRepository().checkId(id, this));
}
if(name!=null){
item.setName(name);
}
if(containerDeclarations!=null)
item.setContainerDeclarations((Declarations)containerDeclarations.getContainedItem());
}
/**
* this constructor allows you to set all 'settable' values, including container if any.
*/
public FEConstantHLAPI(
java.lang.String id
, java.lang.String name
, FiniteEnumerationHLAPI sort
) throws InvalidIDException ,VoidRepositoryException {//BEGIN CONSTRUCTOR BODY
FiniteEnumerationsFactory fact = FiniteEnumerationsFactoryImpl.eINSTANCE;
synchronized(fact){item = fact.createFEConstant();}
if(id!=null){
item.setId(ModelRepository.getInstance().getCurrentIdRepository().checkId(id, this));
}
if(name!=null){
item.setName(name);
}
if(sort!=null)
item.setSort((FiniteEnumeration)sort.getContainedItem());
}
/**
* This constructor encapsulate a low level API object in HLAPI.
*/
public FEConstantHLAPI(FEConstant lowLevelAPI){
item = lowLevelAPI;
}
// access to low level API
/**
* Return encapsulated object
*/
public FEConstant getContainedItem(){
return item;
}
//getters giving LLAPI object
/**
* Return the encapsulate Low Level API object.
*/
public String getId(){
return item.getId();
}
/**
* Return the encapsulate Low Level API object.
*/
public String getName(){
return item.getName();
}
/**
* Return the encapsulate Low Level API object.
*/
public Declarations getContainerDeclarations(){
return item.getContainerDeclarations();
}
/**
* Return the encapsulate Low Level API object.
*/
public FiniteEnumeration getSort(){
return item.getSort();
}
//getters giving HLAPI object
/**
* This accessor automatically encapsulate an element of the current object.
* WARNING : this creates a new object in memory.
* @return : null if the element is null
*/
public DeclarationsHLAPI getContainerDeclarationsHLAPI(){
if(item.getContainerDeclarations() == null) return null;
return new DeclarationsHLAPI(item.getContainerDeclarations());
}
/**
* This accessor automatically encapsulate an element of the current object.
* WARNING : this creates a new object in memory.
* @return : null if the element is null
*/
public FiniteEnumerationHLAPI getSortHLAPI(){
if(item.getSort() == null) return null;
return new FiniteEnumerationHLAPI(item.getSort());
}
//Special getter for list of generics object, return only one object type.
//setters (including container setter if aviable)
/**
* set Id
*/
public void setIdHLAPI(
java.lang.String elem) throws InvalidIDException ,VoidRepositoryException {
if(elem!=null){
try{
item.setId(ModelRepository.getInstance().getCurrentIdRepository().changeId(this, elem));
}catch (OtherException e){
ModelRepository.getInstance().getCurrentIdRepository().checkId(elem, this);
}
}
}
/**
* set Name
*/
public void setNameHLAPI(
java.lang.String elem){
if(elem!=null){
item.setName(elem);
}
}
/**
* set ContainerDeclarations
*/
public void setContainerDeclarationsHLAPI(
DeclarationsHLAPI elem){
if(elem!=null)
item.setContainerDeclarations((Declarations)elem.getContainedItem());
}
/**
* set Sort
*/
public void setSortHLAPI(
FiniteEnumerationHLAPI elem){
if(elem!=null)
item.setSort((FiniteEnumeration)elem.getContainedItem());
}
//setters/remover for lists.
//equals method
public boolean equals(FEConstantHLAPI item){
return item.getContainedItem().equals(getContainedItem());
}
//PNML
/**
* Returns the PNML xml tree for this object.
*/
public String toPNML(){
return item.toPNML();
}
/**
* Writes the PNML XML tree of this object into file channel.
*/
public void toPNML(FileChannel fc){
item.toPNML(fc);
}
/**
* creates an object from the xml nodes.(symetric work of toPNML)
*/
public void fromPNML(OMElement subRoot,IdRefLinker idr) throws InnerBuildException, InvalidIDException, VoidRepositoryException{
item.fromPNML(subRoot,idr);
}
public boolean validateOCL(DiagnosticChain diagnostics){
return item.validateOCL(diagnostics);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy