You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by bu...@apache.org on 2013/02/15 14:24:52 UTC

svn commit: r850703 - in /websites/staging/isis/trunk: cgi-bin/ content/ content/components/objectstores/jdo/dates-blobs-lazy-loading.html

Author: buildbot
Date: Fri Feb 15 13:24:52 2013
New Revision: 850703

Log:
Staging update by buildbot for isis

Modified:
    websites/staging/isis/trunk/cgi-bin/   (props changed)
    websites/staging/isis/trunk/content/   (props changed)
    websites/staging/isis/trunk/content/components/objectstores/jdo/dates-blobs-lazy-loading.html

Propchange: websites/staging/isis/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Fri Feb 15 13:24:52 2013
@@ -1 +1 @@
-1446572
+1446573

Propchange: websites/staging/isis/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Fri Feb 15 13:24:52 2013
@@ -1 +1 @@
-1446572
+1446573

Modified: websites/staging/isis/trunk/content/components/objectstores/jdo/dates-blobs-lazy-loading.html
==============================================================================
--- websites/staging/isis/trunk/content/components/objectstores/jdo/dates-blobs-lazy-loading.html (original)
+++ websites/staging/isis/trunk/content/components/objectstores/jdo/dates-blobs-lazy-loading.html Fri Feb 15 13:24:52 2013
@@ -248,20 +248,16 @@
 <p>For example, the <code>ToDoItem</code> (in the <a href="../../../getting-started/quickstart-archetype.html">wicket/restful/jdo archetype</a>) defines the <code>dueBy</code> property as follows:</p>
 
 <pre>
-  public class ToDoItem ... {
-    ...
-    @javax.jdo.annotations.Persistent(defaultFetchGroup="true")
-    private LocalDate dueBy;
-
-    @MemberOrder(name="Detail", sequence = "3")
-    @Optional
-    public LocalDate getDueBy() {
-      return dueBy;
-    }
-    public void setDueBy(final LocalDate dueBy) {
-      this.dueBy = dueBy;
-    }
-    ...
+  @javax.jdo.annotations.Persistent(defaultFetchGroup="true")
+  private LocalDate dueBy;
+
+  @MemberOrder(name="Detail", sequence = "3")
+  @Optional
+  public LocalDate getDueBy() {
+    return dueBy;
+  }
+  public void setDueBy(final LocalDate dueBy) {
+    this.dueBy = dueBy;
   }
 </pre>
 
@@ -277,22 +273,17 @@ In DataNucleus 3.2, it will no longer be
 <p>For example, in the <code>ToDoItem</code> (in the <a href="../../../getting-started/quickstart-archetype.html">wicket/restful/jdo archetype</a>) the <code>attachment</code> property is as follows:</p>
 
 <pre>
-  public class ToDoItem ... {
+  @javax.jdo.annotations.Persistent(defaultFetchGroup="false")
+  private Blob attachment;
 
-    ...
-    @javax.jdo.annotations.Persistent(defaultFetchGroup="false")
-    private Blob attachment;
-
-    @Optional
-    @MemberOrder(name="Detail", sequence = "7")
-    @Hidden(where=Where.STANDALONE_TABLES)
-    public Blob getAttachment() {
-      return attachment;
-    }
-    public void setAttachment(final Blob attachment) {
-      this.attachment = attachment;
-    }
-    ...
+  @Optional
+  @MemberOrder(name="Detail", sequence = "7")
+  @Hidden(where=Where.STANDALONE_TABLES)
+  public Blob getAttachment() {
+    return attachment;
+  }
+  public void setAttachment(final Blob attachment) {
+    this.attachment = attachment;
   }
 </pre>
 
@@ -307,24 +298,19 @@ In DataNucleus 3.2, it will no longer be
 <p>For example, in the <code>ToDoItem</code> (in the <a href="../../../getting-started/quickstart-archetype.html">wicket/restful/jdo archetype</a>) the <code>dependencies</code> collection is as follows:</p>
 
 <pre>
-  public class ToDoItem ... {
-
-    ...
-    @javax.jdo.annotations.Persistent(table="TODO_DEPENDENCIES")
-    @javax.jdo.annotations.Join(column="DEPENDING_TODO_ID")
-    @javax.jdo.annotations.Element(column="DEPENDENT_TODO_ID")
-    private SortedSet<ToDoItem> dependencies = new TreeSet<ToDoItem>();
-
-    @Disabled
-    @MemberOrder(sequence = "1")
-    @Render(Type.EAGERLY)
-    public SortedSet<ToDoItem> getDependencies() {
-      return dependencies;
-    }
-    public void setDependencies(final SortedSet<ToDoItem> dependencies) {
-      this.dependencies = dependencies;
-    }
-    ...
+  @javax.jdo.annotations.Persistent(table="TODO_DEPENDENCIES")
+  @javax.jdo.annotations.Join(column="DEPENDING_TODO_ID")
+  @javax.jdo.annotations.Element(column="DEPENDENT_TODO_ID")
+  private SortedSet<ToDoItem> dependencies = new TreeSet<ToDoItem>();
+
+  @Disabled
+  @MemberOrder(sequence = "1")
+  @Render(Type.EAGERLY)
+  public SortedSet<ToDoItem> getDependencies() {
+    return dependencies;
+  }
+  public void setDependencies(final SortedSet<ToDoItem> dependencies) {
+    this.dependencies = dependencies;
   }
 </pre>