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/hierarchyquery/A.java')
-rw-r--r--examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/issues/hierarchyquery/A.java49
1 files changed, 49 insertions, 0 deletions
diff --git a/examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/issues/hierarchyquery/A.java b/examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/issues/hierarchyquery/A.java
new file mode 100644
index 000000000..ec1da7239
--- /dev/null
+++ b/examples/org.eclipse.emf.teneo.samples/src/org/eclipse/emf/teneo/samples/issues/hierarchyquery/A.java
@@ -0,0 +1,49 @@
+/*
+ * 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.hierarchyquery;
+
+
+/**
+ * Class is part of a test case.
+ * @see org.eclipse.emf.teneo.store.test.TestContainment
+ *
+ * @author <a href="mailto:mtaal@elver.org">Martin Taal</a>
+ * @version $Revision: 1.1 $ $Date: 2006/07/11 16:57:18 $
+
+ * @model
+*/
+public class A
+{
+ /** The name */
+ private String name;
+
+ /**
+ * Get the name
+ * @model
+ */
+ public String getName()
+ {
+ return name;
+ }
+
+ /**
+ * Set name
+ */
+ public void setName(String newName)
+ {
+ name = newName;
+ }
+}

Back to the top