You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2013/01/19 22:45:45 UTC

svn commit: r1435718 - /isis/site/trunk/content/getting-started/screenshots.md

Author: danhaywood
Date: Sat Jan 19 21:45:45 2013
New Revision: 1435718

URL: http://svn.apache.org/viewvc?rev=1435718&view=rev
Log:
isis site - more on screenshots

Modified:
    isis/site/trunk/content/getting-started/screenshots.md

Modified: isis/site/trunk/content/getting-started/screenshots.md
URL: http://svn.apache.org/viewvc/isis/site/trunk/content/getting-started/screenshots.md?rev=1435718&r1=1435717&r2=1435718&view=diff
==============================================================================
--- isis/site/trunk/content/getting-started/screenshots.md (original)
+++ isis/site/trunk/content/getting-started/screenshots.md Sat Jan 19 21:45:45 2013
@@ -100,7 +100,7 @@ public class ToDoItem {
     public void setDescription(
             String description) { ... }
     ...
-</pre><i>... and (vector) collections on the right:</i><pre>
+</pre><i>... (vector) collections on the right:</i><pre>
     ...
     @Disabled
     @MemberOrder(sequence = "1")
@@ -121,7 +121,17 @@ public class ToDoItem {
     </td>
   </tr>
   <tr>
-    <td>Edit entity<br/><br/><i>The entity's properties can be edited through the 'Edit' button</i></td>
+    <td>Edit entity<br/><br/><i>The entity's properties can be edited through the 'Edit' button.  Some properties may not be editable:</i><pre>
+public class ToDoItem {
+    ...
+    @Disabled
+    @MemberOrder(sequence = "4")
+    public boolean isComplete() { ... }
+    public void setComplete(
+        final boolean complete) { ... }
+    ...
+}
+</pre></td>
     <td>
       <img src="resources/screencast-12-todo-entity-edit.png" width="525" height="394"></img>
     </td>