You are viewing a plain text version of this content. The canonical link for it is here.
Posted to graffito-commits@incubator.apache.org by ap...@apache.org on 2006/02/08 10:06:53 UTC

svn commit: r375911 - in /incubator/graffito/trunk/jcr/jcr-mapping/src/test/org/apache/portals/graffito/jcr/testmodel: D.java DFull.java

Author: apopescu
Date: Wed Feb  8 02:06:52 2006
New Revision: 375911

URL: http://svn.apache.org/viewcvs?rev=375911&view=rev
Log:
testmodel for bean-descriptor with inlining

Added:
    incubator/graffito/trunk/jcr/jcr-mapping/src/test/org/apache/portals/graffito/jcr/testmodel/D.java
    incubator/graffito/trunk/jcr/jcr-mapping/src/test/org/apache/portals/graffito/jcr/testmodel/DFull.java

Added: incubator/graffito/trunk/jcr/jcr-mapping/src/test/org/apache/portals/graffito/jcr/testmodel/D.java
URL: http://svn.apache.org/viewcvs/incubator/graffito/trunk/jcr/jcr-mapping/src/test/org/apache/portals/graffito/jcr/testmodel/D.java?rev=375911&view=auto
==============================================================================
--- incubator/graffito/trunk/jcr/jcr-mapping/src/test/org/apache/portals/graffito/jcr/testmodel/D.java (added)
+++ incubator/graffito/trunk/jcr/jcr-mapping/src/test/org/apache/portals/graffito/jcr/testmodel/D.java Wed Feb  8 02:06:52 2006
@@ -0,0 +1,53 @@
+package org.apache.portals.graffito.jcr.testmodel;
+
+
+/**
+ * This class/interface
+ */
+public class D {
+    private String path;
+    private String d1;
+    private B b1;
+
+    /**
+     * @return Returns the dB.
+     */
+    public B getB1() {
+        return this.b1;
+    }
+
+    /**
+     * @param db The dB to set.
+     */
+    public void setB1(B db) {
+        this.b1 = db;
+    }
+
+    /**
+     * @return Returns the dString.
+     */
+    public String getD1() {
+        return this.d1;
+    }
+
+    /**
+     * @param string The dString to set.
+     */
+    public void setD1(String string) {
+        this.d1 = string;
+    }
+
+    /**
+     * @return Returns the path.
+     */
+    public String getPath() {
+        return path;
+    }
+
+    /**
+     * @param path The path to set.
+     */
+    public void setPath(String path) {
+        this.path= path;
+    }
+}

Added: incubator/graffito/trunk/jcr/jcr-mapping/src/test/org/apache/portals/graffito/jcr/testmodel/DFull.java
URL: http://svn.apache.org/viewcvs/incubator/graffito/trunk/jcr/jcr-mapping/src/test/org/apache/portals/graffito/jcr/testmodel/DFull.java?rev=375911&view=auto
==============================================================================
--- incubator/graffito/trunk/jcr/jcr-mapping/src/test/org/apache/portals/graffito/jcr/testmodel/DFull.java (added)
+++ incubator/graffito/trunk/jcr/jcr-mapping/src/test/org/apache/portals/graffito/jcr/testmodel/DFull.java Wed Feb  8 02:06:52 2006
@@ -0,0 +1,68 @@
+package org.apache.portals.graffito.jcr.testmodel;
+
+
+/**
+ * This class/interface
+ */
+public class DFull {
+    private String path;
+    private String d1;
+    private String b1;
+    private String b2;
+
+    /**
+     * @return Returns the b1.
+     */
+    public String getB1() {
+        return b1;
+    }
+
+    /**
+     * @param b1 The b1 to set.
+     */
+    public void setB1(String b1) {
+        this.b1 = b1;
+    }
+
+    /**
+     * @return Returns the b2.
+     */
+    public String getB2() {
+        return b2;
+    }
+
+    /**
+     * @param b2 The b2 to set.
+     */
+    public void setB2(String b2) {
+        this.b2 = b2;
+    }
+
+    /**
+     * @return Returns the dString.
+     */
+    public String getD1() {
+        return this.d1;
+    }
+
+    /**
+     * @param string The dString to set.
+     */
+    public void setD1(String string) {
+        this.d1 = string;
+    }
+
+    /**
+     * @return Returns the path.
+     */
+    public String getPath() {
+        return path;
+    }
+
+    /**
+     * @param path The path to set.
+     */
+    public void setPath(String path) {
+        this.path= path;
+    }
+}