Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/issues/testrelation3/TestB.java')
-rw-r--r--examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/issues/testrelation3/TestB.java47
1 files changed, 47 insertions, 0 deletions
diff --git a/examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/issues/testrelation3/TestB.java b/examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/issues/testrelation3/TestB.java
new file mode 100644
index 000000000..7f50a4d12
--- /dev/null
+++ b/examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/issues/testrelation3/TestB.java
@@ -0,0 +1,47 @@
+/*
+ * Copyright 2004-2005, Elver.org (http://www.eclipse.org/emf/teneo).
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.eclipse.emf.teneo.samples.issues.testrelation3;
+
+
+/**
+ * Class is part of a test case.
+ * @see org.eclipse.emf.teneo.store.test.testcaserelation.TestRelation2
+ *
+ * @model
+ *
+ * @author <a href="mailto:mtaal@elver.org">Martin Taal</a>
+ * @version $Revision: 1.1 $ $Date: 2006/07/11 16:57:03 $
+*/
+public class TestB
+{
+ String code;
+
+ /**
+ * Just a code
+ * @model
+ */
+ public String getCode()
+ {
+ return code;
+ }
+
+ /**
+ * @param code The code to set.
+ */
+ public void setCode(String code) {
+ this.code = code;
+ }
+} \ No newline at end of file

Back to the top