atl un peu mieu

This commit is contained in:
Guillotin Damien 2021-10-15 12:56:44 +02:00
parent 78b8c39ee5
commit a84d99fb9d
41 changed files with 569 additions and 10944 deletions

View file

@ -4966,3 +4966,43 @@ java.lang.InterruptedException
at org.eclipse.osgi.container.SystemModule.stop(SystemModule.java:207) at org.eclipse.osgi.container.SystemModule.stop(SystemModule.java:207)
at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule$1.run(EquinoxBundle.java:220) at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule$1.run(EquinoxBundle.java:220)
at java.base/java.lang.Thread.run(Thread.java:829) at java.base/java.lang.Thread.run(Thread.java:829)
!SESSION 2021-10-15 12:34:32.211 -----------------------------------------------
eclipse.buildId=4.17.0.I20200902-1800
java.version=11.0.11
java.vendor=Ubuntu
BootLoader constants: OS=linux, ARCH=x86_64, WS=gtk, NL=fr_FR
Framework arguments: -product org.eclipse.epp.package.modeling.product
Command-line arguments: -os linux -ws gtk -arch x86_64 -product org.eclipse.epp.package.modeling.product
!ENTRY org.eclipse.emf.cdo.explorer 4 0 2021-10-15 12:56:28.121
!MESSAGE InterruptedException
!STACK 0
java.lang.InterruptedException
at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireSharedInterruptibly(AbstractQueuedSynchronizer.java:1343)
at java.base/java.util.concurrent.Semaphore.acquire(Semaphore.java:318)
at org.eclipse.net4j.util.lifecycle.Lifecycle.lock(Lifecycle.java:312)
at org.eclipse.net4j.util.lifecycle.Lifecycle.internalDeactivate(Lifecycle.java:118)
at org.eclipse.net4j.util.lifecycle.ShareableLifecycle.internalDeactivate(ShareableLifecycle.java:52)
at org.eclipse.net4j.util.lifecycle.Lifecycle.deactivate(Lifecycle.java:170)
at org.eclipse.net4j.util.lifecycle.LifecycleUtil.deactivate(LifecycleUtil.java:235)
at org.eclipse.net4j.util.lifecycle.LifecycleUtil.deactivate(LifecycleUtil.java:225)
at org.eclipse.emf.cdo.internal.explorer.bundle.OM.disposeManagers(OM.java:83)
at org.eclipse.emf.cdo.internal.explorer.bundle.OM$Activator.doStop(OM.java:136)
at org.eclipse.net4j.util.om.OSGiActivator.stop(OSGiActivator.java:92)
at org.eclipse.osgi.internal.framework.BundleContextImpl$3.run(BundleContextImpl.java:871)
at org.eclipse.osgi.internal.framework.BundleContextImpl$3.run(BundleContextImpl.java:1)
at java.base/java.security.AccessController.doPrivileged(Native Method)
at org.eclipse.osgi.internal.framework.BundleContextImpl.stop(BundleContextImpl.java:863)
at org.eclipse.osgi.internal.framework.EquinoxBundle.stopWorker0(EquinoxBundle.java:1025)
at org.eclipse.osgi.internal.framework.EquinoxBundle$EquinoxModule.stopWorker(EquinoxBundle.java:370)
at org.eclipse.osgi.container.Module.doStop(Module.java:660)
at org.eclipse.osgi.container.Module.stop(Module.java:521)
at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.decStartLevel(ModuleContainer.java:1886)
at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.doContainerStartLevel(ModuleContainer.java:1761)
at org.eclipse.osgi.container.SystemModule.stopWorker(SystemModule.java:275)
at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule.stopWorker(EquinoxBundle.java:202)
at org.eclipse.osgi.container.Module.doStop(Module.java:660)
at org.eclipse.osgi.container.Module.stop(Module.java:521)
at org.eclipse.osgi.container.SystemModule.stop(SystemModule.java:207)
at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule$1.run(EquinoxBundle.java:220)
at java.base/java.lang.Thread.run(Thread.java:829)

View file

@ -1,125 +0,0 @@
package simplepdl.manip;
import java.io.IOException;
import java.util.Collections;
import java.util.Map;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.emf.ecore.resource.ResourceSet;
import org.eclipse.emf.ecore.resource.impl.ResourceSetImpl;
import org.eclipse.emf.ecore.xmi.impl.XMIResourceFactoryImpl;
import petrinet.PetrinetPackage;
import petrinet.Place;
import petrinet.Transition;
import petrinet.Arc;
import petrinet.Network;
import petrinet.PetrinetFactory;
import simplepdl.Process;
import simplepdl.WorkDefinition;
import simplepdl.WorkSequence;
import simplepdl.WorkSequenceType;
import simplepdl.SimplepdlFactory;
import simplepdl.SimplepdlPackage;
public class simplepdl2petrinet {
public static void main(String[] args) {
// Charger les package SimplePDL et Petrinet afin de les enregistrer dans le registre d'Eclipse.
SimplepdlPackage packageInstance = SimplepdlPackage.eINSTANCE;
PetrinetPackage packageInstance2 = PetrinetPackage.eINSTANCE;
// Enregistrer l'extension ".xmi" comme devant être ouverte à
// l'aide d'un objet "XMIResourceFactoryImpl"
Resource.Factory.Registry reg = Resource.Factory.Registry.INSTANCE;
Map<String, Object> m = reg.getExtensionToFactoryMap();
m.put("xmi", new XMIResourceFactoryImpl());
// Créer un objet resourceSetImpl qui contiendra une ressource EMF (le modèle)
ResourceSet resGet = new ResourceSetImpl();
// Charger la ressource (notre modèle)
URI modelURI = URI.createURI("pdl-sujet.xmi");
Resource resource = resGet.getResource(modelURI, true);
// Récupérer le premier élément du modèle (élément racine)
Process process = (Process) resource.getContents().get(0);
// La fabrique pour fabriquer les éléments de PetriNET
PetrinetFactory myFactory = PetrinetFactory.eINSTANCE;
// Créer un élément Network
Network network = myFactory.createNetwork();
network.setName(process.getName());
// Conversion des WorkDefinition en Node et Transition
for (Object o : process.getProcessElements()) {
if (o instanceof WorkDefinition) {
WorkDefinition wd = (WorkDefinition) o;
String name = wd.getName();
System.out.println(" - " + name);
Place idle = myFactory.createPlace();
idle.setName(name + "_idle");
idle.setTokens(1);
Place running = myFactory.createPlace();
running.setName(name + "_running");
running.setTokens(1);
Place finished = myFactory.createPlace();
finished.setName(name + "_finished");
finished.setTokens(1);
Arc pause2start = myFactory.createArc();
pause2start.setTarget(idle);
pause2start.setOutgoing(false);
pause2start.setWeight(1);
Arc start2running = myFactory.createArc();
start2running.setTarget(running);
start2running.setOutgoing(true);
start2running.setWeight(1);
Transition start = myFactory.createTransition();
start.setName(name + "_start");
start.getArcs().add(pause2start);
start.getArcs().add(start2running);
Arc running2finish = myFactory.createArc();
running2finish.setTarget(running);
running2finish.setOutgoing(false);
running2finish.setWeight(1);
Arc finish2finished = myFactory.createArc();
finish2finished.setTarget(finished);
finish2finished.setOutgoing(true);
finish2finished.setWeight(1);
Transition finish = myFactory.createTransition();
finish.setName(name + "_finish");
finish.getArcs().add(running2finish);
finish.getArcs().add(finish2finished);
System.out.println(" + " + idle.getName());
network.getNodes().add(idle);
network.getNodes().add(start);
network.getNodes().add(running);
network.getNodes().add(finish);
network.getNodes().add(finished);
}
}
// Créer un objet resourceSetImpl qui contiendra une ressource EMF (le modèle)
ResourceSet resSet = new ResourceSetImpl();
// Créer le nouveau xmi (modèle convertit)
URI convURI = URI.createURI("test.xmi");
Resource conv = resSet.createResource(convURI);
// Sauver la ressource
try {
conv.save(Collections.EMPTY_MAP);
} catch (IOException e) {
e.printStackTrace();
}
}
}

File diff suppressed because one or more lines are too long

View file

@ -1,2 +1,2 @@
#Cached timestamps #Cached timestamps
#Fri Oct 15 12:33:56 CEST 2021 #Fri Oct 15 12:56:27 CEST 2021

View file

@ -1,5 +1,5 @@
#safe table #safe table
#Fri Oct 15 12:33:56 CEST 2021 #Fri Oct 15 12:56:27 CEST 2021
.orphans=0 .orphans=0
.mainData=0 .mainData=0
.contributors=0 .contributors=0
@ -7,4 +7,4 @@
.extraData=0 .extraData=0
.contributions=0 .contributions=0
.table=0 .table=0
.crca3e02c3b.v1 .crca6e9abce.v1

View file

@ -1,5 +1,5 @@
#safe table #safe table
#Fri Oct 15 12:33:56 CEST 2021 #Fri Oct 15 12:56:28 CEST 2021
.orphans=1 .orphans=1
.mainData=1 .mainData=1
.contributors=1 .contributors=1
@ -7,4 +7,4 @@
.extraData=1 .extraData=1
.contributions=1 .contributions=1
.table=1 .table=1
.crc6c921600.v1 .crc2b55d41e.v1

View file

@ -1,5 +1,5 @@
#Configuration File #Configuration File
#Fri Oct 15 12:32:20 CEST 2021 #Fri Oct 15 12:34:50 CEST 2021
eclipse.product=org.eclipse.platform.ide eclipse.product=org.eclipse.platform.ide
osgi.splashPath=file\:/mnt/n7fs/ens/tp_cregut/eclipse-gls-2020-09/plugins/org.eclipse.platform_4.17.0.v20200902-1800 osgi.splashPath=file\:/mnt/n7fs/ens/tp_cregut/eclipse-gls-2020-09/plugins/org.eclipse.platform_4.17.0.v20200902-1800
osgi.install.area=file\:/mnt/n7fs/ens/tp_cregut/eclipse-gls-2020-09/ osgi.install.area=file\:/mnt/n7fs/ens/tp_cregut/eclipse-gls-2020-09/

View file

@ -1,5 +1,5 @@
# #
#Fri Oct 15 12:32:20 CEST 2021 #Fri Oct 15 12:34:50 CEST 2021
fr.n7.simplepdl.edit=bin fr.n7.simplepdl.edit=bin
fr.n7.simplepdl.txt.pdl.ide=bin fr.n7.simplepdl.txt.pdl.ide=bin
fr.n7.pdl3.ui.tests=test-bin fr.n7.pdl3.ui.tests=test-bin

View file

@ -1,5 +1,5 @@
#safe table #safe table
#Fri Oct 15 12:33:54 CEST 2021 #Fri Oct 15 12:56:26 CEST 2021
.orphans=0 .orphans=0
.mainData=0 .mainData=0
.contributors=0 .contributors=0
@ -7,4 +7,4 @@
.extraData=0 .extraData=0
.contributions=0 .contributions=0
.table=0 .table=0
.crcba9dade1.v1 .crcaa576b23.v1

View file

@ -1,5 +1,5 @@
#safe table #safe table
#Fri Oct 15 12:33:55 CEST 2021 #Fri Oct 15 12:56:26 CEST 2021
.orphans=1 .orphans=1
.mainData=1 .mainData=1
.contributors=1 .contributors=1
@ -7,4 +7,4 @@
.extraData=1 .extraData=1
.contributions=1 .contributions=1
.table=1 .table=1
.crc79515737.v1 .crc65255118.v1

View file

@ -1,4 +1,4 @@
#safe table #safe table
#Fri Oct 15 12:32:51 CEST 2021 #Fri Oct 15 12:35:21 CEST 2021
framework.info=1 framework.info=1
.crc6a3465d0.v1 .crc6783de7d.v1

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<config date="1634293945245" transient="false" version="3.0"> <config date="1634294094932" transient="false" version="3.0">
<site enabled="true" policy="USER-EXCLUDE" updateable="true" url="platform:/base/"> <site enabled="true" policy="USER-EXCLUDE" updateable="true" url="platform:/base/">
<feature id="org.eclipse.help" plugin-identifier="org.eclipse.help.base" url="features/org.eclipse.help_2.3.300.v20200902-1800/" version="2.3.300.v20200902-1800"> <feature id="org.eclipse.help" plugin-identifier="org.eclipse.help.base" url="features/org.eclipse.help_2.3.300.v20200902-1800/" version="2.3.300.v20200902-1800">
</feature> </feature>

View file

@ -1,4 +1,4 @@
# List of external plug-in models previously loaded. Timestamp: 1634293781894 # List of external plug-in models previously loaded. Timestamp: 1634294078030
file:/mnt/n7fs/ens/tp_cregut/eclipse-gls-2020-09/plugins/com.google.guava_27.1.0.v20190517-1946.jar file:/mnt/n7fs/ens/tp_cregut/eclipse-gls-2020-09/plugins/com.google.guava_27.1.0.v20190517-1946.jar
file:/mnt/n7fs/ens/tp_cregut/eclipse-gls-2020-09/plugins/com.google.inject_3.0.0.v201605172100.jar file:/mnt/n7fs/ens/tp_cregut/eclipse-gls-2020-09/plugins/com.google.inject_3.0.0.v201605172100.jar
file:/mnt/n7fs/ens/tp_cregut/eclipse-gls-2020-09/plugins/com.ibm.icu_67.1.0.v20200706-1749.jar file:/mnt/n7fs/ens/tp_cregut/eclipse-gls-2020-09/plugins/com.ibm.icu_67.1.0.v20200706-1749.jar

View file

@ -1,3 +1,3 @@
#Fri Oct 15 12:29:36 CEST 2021 #Fri Oct 15 12:34:33 CEST 2021
org.eclipse.core.runtime=2 org.eclipse.core.runtime=2
org.eclipse.platform=4.17.0.v20200902-1800 org.eclipse.platform=4.17.0.v20200902-1800

View file

@ -203,8 +203,8 @@ public class simplepdl2petrinet {
if (node instanceof Place) { if (node instanceof Place) {
Place place = (Place) node; Place place = (Place) node;
if (place.getName().equals(predecessor.getName() + predecessor_suffix)) { if (place.getName().equals(predecessor.getName() + predecessor_suffix)) {
arc1.setTarget(place); arc1.setPlace(place);
arc2.setTarget(place); arc2.setPlace(place);
} }
} }
if (node instanceof Transition) { if (node instanceof Transition) {

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
PROBLEMS_FILTERS_MIGRATE=true PROBLEMS_FILTERS_MIGRATE=true
TASKS_FILTERS_MIGRATE=true TASKS_FILTERS_MIGRATE=true
eclipse.preferences.version=1 eclipse.preferences.version=1
platformState=1634293942332 platformState=1634294092291
quickStart=false quickStart=false
tipsAndTricks=true tipsAndTricks=true

File diff suppressed because one or more lines are too long

View file

@ -2,4 +2,6 @@
<section name="Workbench"> <section name="Workbench">
<section name="JavaElementSearchActions"> <section name="JavaElementSearchActions">
</section> </section>
<section name="quick_assist_proposal_size">
</section>
</section> </section>

View file

@ -1,3 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<session version="1.0">&#x0A;<refactoring comment="Delete resource &apos;fr.n7.simplepdl.exemples/src-gen/exemple.html&apos;" deleteContents="false" description="Delete resource &apos;fr.n7.simplepdl.exemples/src-gen/exemple.html&apos;" element1="/fr.n7.simplepdl.exemples/src-gen/exemple.html" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634143995560"/>&#x0A;<refactoring comment="Delete resource &apos;fr.n7.simplepdl.exemples/src-gen&apos;" deleteContents="false" description="Delete resource &apos;fr.n7.simplepdl.exemples/src-gen&apos;" element1="/fr.n7.simplepdl.exemples/src-gen" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634143998042"/>&#x0A;<refactoring comment="Delete resource &apos;fr.n7.petrinet.design&apos;" deleteContents="true" description="Delete resource &apos;fr.n7.petrinet.design&apos;" element1="/fr.n7.petrinet.design" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634222921436"/>&#x0A;<refactoring comment="Delete resource &apos;fr.n7.petrinet.exemples/gen/test_simplepdl2petrinet.xmi&apos;" deleteContents="false" description="Delete resource &apos;fr.n7.petrinet.exemples/gen/test_simplepdl2petrinet.xmi&apos;" element1="/fr.n7.petrinet.exemples/gen/test_simplepdl2petrinet.xmi" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634288116836"/>&#x0A;<refactoring comment="Delete resource &apos;fr.n7.petrinet.exemples/models&apos;" deleteContents="false" description="Delete resource &apos;fr.n7.petrinet.exemples/models&apos;" element1="/fr.n7.petrinet.exemples/models" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634288651690"/>&#x0A;<refactoring comment="Delete resource &apos;fr.n7.simplepdl2petrinet.samples&apos;" deleteContents="true" description="Delete resource &apos;fr.n7.simplepdl2petrinet.samples&apos;" element1="/fr.n7.simplepdl2petrinet.samples" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634288821022"/>&#x0A;<refactoring comment="Delete resource &apos;fr.n7.petrinet.samples2&apos;" deleteContents="true" description="Delete resource &apos;fr.n7.petrinet.samples2&apos;" element1="/fr.n7.petrinet.samples2" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634289563145"/>&#x0A;<refactoring comment="Delete resource &apos;fr.n7.petrinet.samples2&apos;" deleteContents="true" description="Delete resource &apos;fr.n7.petrinet.samples2&apos;" element1="/fr.n7.petrinet.samples2" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634289800117"/>&#x0A;<refactoring comment="Delete resource &apos;fr.n7.petrinet.samples2&apos;" deleteContents="true" description="Delete resource &apos;fr.n7.petrinet.samples2&apos;" element1="/fr.n7.petrinet.samples2" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634289851563"/>&#x0A;<refactoring comment="Delete resource &apos;fr.n7.petrinet.exemples/gen/test_acl.petrinet&apos;" deleteContents="false" description="Delete resource &apos;fr.n7.petrinet.exemples/gen/test_acl.petrinet&apos;" element1="/fr.n7.petrinet.exemples/gen/test_acl.petrinet" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634290266191"/>&#x0A;<refactoring comment="Delete resource &apos;fr.n7.petrinet.exemples/gen/test_acl.xmi&apos;" deleteContents="false" description="Delete resource &apos;fr.n7.petrinet.exemples/gen/test_acl.xmi&apos;" element1="/fr.n7.petrinet.exemples/gen/test_acl.xmi" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634290268163"/>&#x0A;<refactoring comment="Delete resource &apos;fr.n7.petrinet.exemples/gen/test_acl.petrinet&apos;" deleteContents="false" description="Delete resource &apos;fr.n7.petrinet.exemples/gen/test_acl.petrinet&apos;" element1="/fr.n7.petrinet.exemples/gen/test_acl.petrinet" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634290521455"/>&#x0A;<refactoring comment="Delete resource &apos;fr.n7.petrinet.exemples/src-gen/developpement.net&apos;" deleteContents="false" description="Delete resource &apos;fr.n7.petrinet.exemples/src-gen/developpement.net&apos;" element1="/fr.n7.petrinet.exemples/src-gen/developpement.net" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634290556186"/> <session version="1.0">&#x0A;<refactoring comment="Delete resource &apos;fr.n7.simplepdl.exemples/src-gen/exemple.html&apos;" deleteContents="false" description="Delete resource &apos;fr.n7.simplepdl.exemples/src-gen/exemple.html&apos;" element1="/fr.n7.simplepdl.exemples/src-gen/exemple.html" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634143995560"/>&#x0A;<refactoring comment="Delete resource &apos;fr.n7.simplepdl.exemples/src-gen&apos;" deleteContents="false" description="Delete resource &apos;fr.n7.simplepdl.exemples/src-gen&apos;" element1="/fr.n7.simplepdl.exemples/src-gen" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634143998042"/>&#x0A;<refactoring comment="Delete resource &apos;fr.n7.petrinet.design&apos;" deleteContents="true" description="Delete resource &apos;fr.n7.petrinet.design&apos;" element1="/fr.n7.petrinet.design" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634222921436"/>&#x0A;<refactoring comment="Delete resource &apos;fr.n7.petrinet.exemples/gen/test_simplepdl2petrinet.xmi&apos;" deleteContents="false" description="Delete resource &apos;fr.n7.petrinet.exemples/gen/test_simplepdl2petrinet.xmi&apos;" element1="/fr.n7.petrinet.exemples/gen/test_simplepdl2petrinet.xmi" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634288116836"/>&#x0A;<refactoring comment="Delete resource &apos;fr.n7.petrinet.exemples/models&apos;" deleteContents="false" description="Delete resource &apos;fr.n7.petrinet.exemples/models&apos;" element1="/fr.n7.petrinet.exemples/models" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634288651690"/>&#x0A;<refactoring comment="Delete resource &apos;fr.n7.simplepdl2petrinet.samples&apos;" deleteContents="true" description="Delete resource &apos;fr.n7.simplepdl2petrinet.samples&apos;" element1="/fr.n7.simplepdl2petrinet.samples" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634288821022"/>&#x0A;<refactoring comment="Delete resource &apos;fr.n7.petrinet.samples2&apos;" deleteContents="true" description="Delete resource &apos;fr.n7.petrinet.samples2&apos;" element1="/fr.n7.petrinet.samples2" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634289563145"/>&#x0A;<refactoring comment="Delete resource &apos;fr.n7.petrinet.samples2&apos;" deleteContents="true" description="Delete resource &apos;fr.n7.petrinet.samples2&apos;" element1="/fr.n7.petrinet.samples2" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634289800117"/>&#x0A;<refactoring comment="Delete resource &apos;fr.n7.petrinet.samples2&apos;" deleteContents="true" description="Delete resource &apos;fr.n7.petrinet.samples2&apos;" element1="/fr.n7.petrinet.samples2" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634289851563"/>&#x0A;<refactoring comment="Delete resource &apos;fr.n7.petrinet.exemples/gen/test_acl.petrinet&apos;" deleteContents="false" description="Delete resource &apos;fr.n7.petrinet.exemples/gen/test_acl.petrinet&apos;" element1="/fr.n7.petrinet.exemples/gen/test_acl.petrinet" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634290266191"/>&#x0A;<refactoring comment="Delete resource &apos;fr.n7.petrinet.exemples/gen/test_acl.xmi&apos;" deleteContents="false" description="Delete resource &apos;fr.n7.petrinet.exemples/gen/test_acl.xmi&apos;" element1="/fr.n7.petrinet.exemples/gen/test_acl.xmi" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634290268163"/>&#x0A;<refactoring comment="Delete resource &apos;fr.n7.petrinet.exemples/gen/test_acl.petrinet&apos;" deleteContents="false" description="Delete resource &apos;fr.n7.petrinet.exemples/gen/test_acl.petrinet&apos;" element1="/fr.n7.petrinet.exemples/gen/test_acl.petrinet" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634290521455"/>&#x0A;<refactoring comment="Delete resource &apos;fr.n7.petrinet.exemples/src-gen/developpement.net&apos;" deleteContents="false" description="Delete resource &apos;fr.n7.petrinet.exemples/src-gen/developpement.net&apos;" element1="/fr.n7.petrinet.exemples/src-gen/developpement.net" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634290556186"/>&#x0A;<refactoring comment="Delete resource &apos;fr.n7.petrinet.exemples/My.petrinet&apos;" deleteContents="false" description="Delete resource &apos;fr.n7.petrinet.exemples/My.petrinet&apos;" element1="/fr.n7.petrinet.exemples/My.petrinet" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1634294191425"/>
</session> </session>

View file

@ -11,3 +11,4 @@
1634290268163 Delete resource 'fr.n7.petrinet.exemples/gen/test_acl.xmi' 1634290268163 Delete resource 'fr.n7.petrinet.exemples/gen/test_acl.xmi'
1634290521455 Delete resource 'fr.n7.petrinet.exemples/gen/test_acl.petrinet' 1634290521455 Delete resource 'fr.n7.petrinet.exemples/gen/test_acl.petrinet'
1634290556186 Delete resource 'fr.n7.petrinet.exemples/src-gen/developpement.net' 1634290556186 Delete resource 'fr.n7.petrinet.exemples/src-gen/developpement.net'
1634294191425 Delete resource 'fr.n7.petrinet.exemples/My.petrinet'

View file

@ -1,2 +1,2 @@
#Cached timestamps #Cached timestamps
#Fri Oct 15 12:33:54 CEST 2021 #Fri Oct 15 12:56:25 CEST 2021

View file

@ -1,5 +1,5 @@
#safe table #safe table
#Fri Oct 15 12:33:54 CEST 2021 #Fri Oct 15 12:56:25 CEST 2021
.orphans=0 .orphans=0
.mainData=0 .mainData=0
.contributors=0 .contributors=0
@ -7,4 +7,4 @@
.extraData=0 .extraData=0
.contributions=0 .contributions=0
.table=0 .table=0
.crcba9dade1.v1 .crcbf942a14.v1

View file

@ -1,5 +1,5 @@
#safe table #safe table
#Fri Oct 15 12:33:54 CEST 2021 #Fri Oct 15 12:56:25 CEST 2021
.orphans=1 .orphans=1
.mainData=1 .mainData=1
.contributors=1 .contributors=1
@ -7,4 +7,4 @@
.extraData=1 .extraData=1
.contributions=1 .contributions=1
.table=1 .table=1
.crc75ef97da.v1 .crc70e6102f.v1

View file

@ -1,4 +1,4 @@
# List of external plug-in models previously loaded. Timestamp: 1634293951655 # List of external plug-in models previously loaded. Timestamp: 1634294100316
file:/mnt/n7fs/ens/tp_cregut/eclipse-gls-2020-09/plugins/com.google.guava_27.1.0.v20190517-1946.jar file:/mnt/n7fs/ens/tp_cregut/eclipse-gls-2020-09/plugins/com.google.guava_27.1.0.v20190517-1946.jar
file:/mnt/n7fs/ens/tp_cregut/eclipse-gls-2020-09/plugins/com.google.inject_3.0.0.v201605172100.jar file:/mnt/n7fs/ens/tp_cregut/eclipse-gls-2020-09/plugins/com.google.inject_3.0.0.v201605172100.jar
file:/mnt/n7fs/ens/tp_cregut/eclipse-gls-2020-09/plugins/com.ibm.icu_67.1.0.v20200706-1749.jar file:/mnt/n7fs/ens/tp_cregut/eclipse-gls-2020-09/plugins/com.ibm.icu_67.1.0.v20200706-1749.jar

View file

@ -1,3 +1,3 @@
#Fri Oct 15 12:32:25 CEST 2021 #Fri Oct 15 12:34:55 CEST 2021
org.eclipse.core.runtime=2 org.eclipse.core.runtime=2
org.eclipse.platform=4.17.0.v20200902-1800 org.eclipse.platform=4.17.0.v20200902-1800

View file

@ -2,64 +2,64 @@
<petrinet:Network xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:petrinet="http://petrinet" name="Developpement"> <petrinet:Network xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:petrinet="http://petrinet" name="Developpement">
<nodes xsi:type="petrinet:Place" name="Conception_idle" tokens="1"/> <nodes xsi:type="petrinet:Place" name="Conception_idle" tokens="1"/>
<nodes xsi:type="petrinet:Transition" name="Conception_start"> <nodes xsi:type="petrinet:Transition" name="Conception_start">
<arcs weight="1" target="//@nodes.0"/> <arcs weight="1" place="//@nodes.0"/>
<arcs weight="1" outgoing="true" target="//@nodes.3"/> <arcs weight="1" outgoing="true" place="//@nodes.3"/>
<arcs weight="1" outgoing="true" target="//@nodes.2"/> <arcs weight="1" outgoing="true" place="//@nodes.2"/>
</nodes> </nodes>
<nodes xsi:type="petrinet:Place" name="Conception_started"/> <nodes xsi:type="petrinet:Place" name="Conception_started"/>
<nodes xsi:type="petrinet:Place" name="Conception_running"/> <nodes xsi:type="petrinet:Place" name="Conception_running"/>
<nodes xsi:type="petrinet:Transition" name="Conception_finish"> <nodes xsi:type="petrinet:Transition" name="Conception_finish">
<arcs weight="1" target="//@nodes.3"/> <arcs weight="1" place="//@nodes.3"/>
<arcs weight="1" outgoing="true" target="//@nodes.5"/> <arcs weight="1" outgoing="true" place="//@nodes.5"/>
</nodes> </nodes>
<nodes xsi:type="petrinet:Place" name="Conception_finished"/> <nodes xsi:type="petrinet:Place" name="Conception_finished"/>
<nodes xsi:type="petrinet:Place" name="Programmation_idle" tokens="1"/> <nodes xsi:type="petrinet:Place" name="Programmation_idle" tokens="1"/>
<nodes xsi:type="petrinet:Transition" name="Programmation_start"> <nodes xsi:type="petrinet:Transition" name="Programmation_start">
<arcs weight="1" target="//@nodes.6"/> <arcs weight="1" place="//@nodes.6"/>
<arcs weight="1" outgoing="true" target="//@nodes.9"/> <arcs weight="1" outgoing="true" place="//@nodes.9"/>
<arcs weight="1" outgoing="true" target="//@nodes.8"/> <arcs weight="1" outgoing="true" place="//@nodes.8"/>
<arcs weight="1" target="//@nodes.5"/> <arcs weight="1" place="//@nodes.5"/>
<arcs weight="1" outgoing="true" target="//@nodes.5"/> <arcs weight="1" outgoing="true" place="//@nodes.5"/>
</nodes> </nodes>
<nodes xsi:type="petrinet:Place" name="Programmation_started"/> <nodes xsi:type="petrinet:Place" name="Programmation_started"/>
<nodes xsi:type="petrinet:Place" name="Programmation_running"/> <nodes xsi:type="petrinet:Place" name="Programmation_running"/>
<nodes xsi:type="petrinet:Transition" name="Programmation_finish"> <nodes xsi:type="petrinet:Transition" name="Programmation_finish">
<arcs weight="1" target="//@nodes.9"/> <arcs weight="1" place="//@nodes.9"/>
<arcs weight="1" outgoing="true" target="//@nodes.11"/> <arcs weight="1" outgoing="true" place="//@nodes.11"/>
</nodes> </nodes>
<nodes xsi:type="petrinet:Place" name="Programmation_finished"/> <nodes xsi:type="petrinet:Place" name="Programmation_finished"/>
<nodes xsi:type="petrinet:Place" name="RedactionTests_idle" tokens="1"/> <nodes xsi:type="petrinet:Place" name="RedactionTests_idle" tokens="1"/>
<nodes xsi:type="petrinet:Transition" name="RedactionTests_start"> <nodes xsi:type="petrinet:Transition" name="RedactionTests_start">
<arcs weight="1" target="//@nodes.12"/> <arcs weight="1" place="//@nodes.12"/>
<arcs weight="1" outgoing="true" target="//@nodes.15"/> <arcs weight="1" outgoing="true" place="//@nodes.15"/>
<arcs weight="1" outgoing="true" target="//@nodes.14"/> <arcs weight="1" outgoing="true" place="//@nodes.14"/>
<arcs weight="1" target="//@nodes.2"/> <arcs weight="1" place="//@nodes.2"/>
<arcs weight="1" outgoing="true" target="//@nodes.2"/> <arcs weight="1" outgoing="true" place="//@nodes.2"/>
</nodes> </nodes>
<nodes xsi:type="petrinet:Place" name="RedactionTests_started"/> <nodes xsi:type="petrinet:Place" name="RedactionTests_started"/>
<nodes xsi:type="petrinet:Place" name="RedactionTests_running"/> <nodes xsi:type="petrinet:Place" name="RedactionTests_running"/>
<nodes xsi:type="petrinet:Transition" name="RedactionTests_finish"> <nodes xsi:type="petrinet:Transition" name="RedactionTests_finish">
<arcs weight="1" target="//@nodes.15"/> <arcs weight="1" place="//@nodes.15"/>
<arcs weight="1" outgoing="true" target="//@nodes.17"/> <arcs weight="1" outgoing="true" place="//@nodes.17"/>
<arcs weight="1" target="//@nodes.11"/> <arcs weight="1" place="//@nodes.11"/>
<arcs weight="1" outgoing="true" target="//@nodes.11"/> <arcs weight="1" outgoing="true" place="//@nodes.11"/>
</nodes> </nodes>
<nodes xsi:type="petrinet:Place" name="RedactionTests_finished"/> <nodes xsi:type="petrinet:Place" name="RedactionTests_finished"/>
<nodes xsi:type="petrinet:Place" name="RedactionDocs_idle" tokens="1"/> <nodes xsi:type="petrinet:Place" name="RedactionDocs_idle" tokens="1"/>
<nodes xsi:type="petrinet:Transition" name="RedactionDocs_start"> <nodes xsi:type="petrinet:Transition" name="RedactionDocs_start">
<arcs weight="1" target="//@nodes.18"/> <arcs weight="1" place="//@nodes.18"/>
<arcs weight="1" outgoing="true" target="//@nodes.21"/> <arcs weight="1" outgoing="true" place="//@nodes.21"/>
<arcs weight="1" outgoing="true" target="//@nodes.20"/> <arcs weight="1" outgoing="true" place="//@nodes.20"/>
<arcs weight="1" target="//@nodes.2"/> <arcs weight="1" place="//@nodes.2"/>
<arcs weight="1" outgoing="true" target="//@nodes.2"/> <arcs weight="1" outgoing="true" place="//@nodes.2"/>
</nodes> </nodes>
<nodes xsi:type="petrinet:Place" name="RedactionDocs_started"/> <nodes xsi:type="petrinet:Place" name="RedactionDocs_started"/>
<nodes xsi:type="petrinet:Place" name="RedactionDocs_running"/> <nodes xsi:type="petrinet:Place" name="RedactionDocs_running"/>
<nodes xsi:type="petrinet:Transition" name="RedactionDocs_finish"> <nodes xsi:type="petrinet:Transition" name="RedactionDocs_finish">
<arcs weight="1" target="//@nodes.21"/> <arcs weight="1" place="//@nodes.21"/>
<arcs weight="1" outgoing="true" target="//@nodes.23"/> <arcs weight="1" outgoing="true" place="//@nodes.23"/>
<arcs weight="1" target="//@nodes.5"/> <arcs weight="1" place="//@nodes.5"/>
<arcs weight="1" outgoing="true" target="//@nodes.5"/> <arcs weight="1" outgoing="true" place="//@nodes.5"/>
</nodes> </nodes>
<nodes xsi:type="petrinet:Place" name="RedactionDocs_finished"/> <nodes xsi:type="petrinet:Place" name="RedactionDocs_finished"/>
</petrinet:Network> </petrinet:Network>

View file

@ -1,9 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<petrinet:Network xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:petrinet="http://petrinet" name="exemple">
<nodes xsi:type="petrinet:Place" name="debut" tokens="1"/>
<nodes xsi:type="petrinet:Place" name="fin"/>
<nodes xsi:type="petrinet:Transition" name="debut2fin">
<arcs weight="1" target="//@nodes.0"/>
<arcs weight="1" outgoing="true" target="//@nodes.1"/>
</nodes>
</petrinet:Network>