File tree Expand file tree Collapse file tree
src/test/java/org/geppetto/datasources Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11The MIT License (MIT)
22
3- Copyright (c) 2011, 2013 OpenWorm.
4- http://openworm .org
3+ Copyright © 2011, 2017 Geppetto authors
4+ http://geppetto .org
55
66All rights reserved. This program and the accompanying materials
77are made available under the terms of the MIT License
88which accompanies this distribution, and is available at
99http://opensource.org/licenses/MIT
1010
1111Contributors:
12- OpenWorm - http://openworm.org/people.html
12+ Geppetto - http://contributors.geppetto.org
1313
1414Permission is hereby granted, free of charge, to any person obtaining a copy
1515of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 55 <groupId >org.geppetto</groupId >
66 <artifactId >datasources</artifactId >
77 <name >Geppetto Data Sources bundle</name >
8- <version >0.3.4 </version >
8+ <version >0.3.5 </version >
99 <packaging >bundle</packaging >
1010 <properties >
1111 <spring .version>3.1.3.RELEASE</spring .version>
Original file line number Diff line number Diff line change 5353import org .geppetto .model .types .TypesFactory ;
5454import org .geppetto .model .types .TypesPackage ;
5555import org .geppetto .model .util .GeppettoVisitingException ;
56+ import org .geppetto .model .values .ImportValue ;
5657import org .geppetto .model .values .Pointer ;
58+ import org .geppetto .model .values .Value ;
5759import org .geppetto .model .variables .Variable ;
5860import org .geppetto .model .variables .VariablesFactory ;
5961
@@ -113,12 +115,11 @@ public boolean isSupported(GeppettoFeature feature)
113115 {
114116 switch (feature )
115117 {
116- case DYNAMIC_VISUALTREE_FEATURE :
117- return false ;
118118 case SET_PARAMETERS_FEATURE :
119119 return true ;
120+ default :
121+ return false ;
120122 }
121- return false ;
122123 }
123124
124125
@@ -208,6 +209,13 @@ public String getName()
208209 return "Test Model Interpreter" ;
209210 }
210211
212+ @ Override
213+ public Value importValue (ImportValue importValue )
214+ throws ModelInterpreterException {
215+ // TODO Auto-generated method stub
216+ return null ;
217+ }
218+
211219
212220
213221
You can’t perform that action at this time.
0 commit comments