~tapaal-contributor/tapaal/disappearing-tokens-1940098

« back to all changes in this revision

Viewing changes to src/dk/aau/cs/io/LoadedModel.java

  • Committer: Kenneth Yrke Jørgensen
  • Date: 2011-04-12 09:50:16 UTC
  • mfrom: (329.1.188 tapaal-1.5)
  • Revision ID: mail@yrke.dk-20110412095016-e4hqdgab5596ja09
Merged with branch addning support for new 1.5 features

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * 
 
3
 */
 
4
package dk.aau.cs.io;
 
5
 
 
6
import java.util.Collection;
 
7
 
 
8
import pipe.dataLayer.TAPNQuery;
 
9
import pipe.dataLayer.Template;
 
10
import dk.aau.cs.model.tapn.TimedArcPetriNetNetwork;
 
11
 
 
12
public class LoadedModel{
 
13
        private Collection<Template> templates;
 
14
        private Collection<TAPNQuery> queries;
 
15
        private TimedArcPetriNetNetwork network; 
 
16
        
 
17
        public LoadedModel(TimedArcPetriNetNetwork network, Collection<Template> templates, Collection<TAPNQuery> queries){
 
18
                this.templates = templates;
 
19
                this.network = network;
 
20
                this.queries = queries; 
 
21
        }
 
22
 
 
23
        public Collection<Template> templates(){ return templates; }
 
24
        public Collection<TAPNQuery> queries(){ return queries; }
 
25
        public TimedArcPetriNetNetwork network(){ return network; }
 
26
}
 
 
b'\\ No newline at end of file'