Skip to content

Commit 33d0986

Browse files
authored
Merge pull request #14 from openworm/development
Release 0.3.5
2 parents 102ad9a + 8ab8d40 commit 33d0986

3 files changed

Lines changed: 15 additions & 7 deletions

File tree

LICENSE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
The 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

66
All rights reserved. This program and the accompanying materials
77
are made available under the terms of the MIT License
88
which accompanies this distribution, and is available at
99
http://opensource.org/licenses/MIT
1010

1111
Contributors:
12-
OpenWorm - http://openworm.org/people.html
12+
Geppetto - http://contributors.geppetto.org
1313

1414
Permission is hereby granted, free of charge, to any person obtaining a copy
1515
of this software and associated documentation files (the "Software"), to deal

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
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>

src/test/java/org/geppetto/datasources/TestModelInterpreterService.java

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@
5353
import org.geppetto.model.types.TypesFactory;
5454
import org.geppetto.model.types.TypesPackage;
5555
import org.geppetto.model.util.GeppettoVisitingException;
56+
import org.geppetto.model.values.ImportValue;
5657
import org.geppetto.model.values.Pointer;
58+
import org.geppetto.model.values.Value;
5759
import org.geppetto.model.variables.Variable;
5860
import 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

0 commit comments

Comments
 (0)