]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.db.tests/src/org/simantics/db/tests/api/write/claimLiteral/TestLiteral.java
Added missing org.simantics.db.{tests,testing} plug-ins.
[simantics/platform.git] / tests / org.simantics.db.tests / src / org / simantics / db / tests / api / write / claimLiteral / TestLiteral.java
1 package org.simantics.db.tests.api.write.claimLiteral;
2
3 import java.util.Arrays;
4
5 public class TestLiteral {
6
7         int a = 1;
8         double b[] = { 1, 2 };
9
10         public void setA(int a) {
11                 this.a = a;
12         }
13         
14         @Override
15         public String toString() {
16                 return "TestLiteral " + a + " " + Arrays.toString(b);
17         }
18         
19 }