You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by cb...@apache.org on 2011/06/24 22:28:15 UTC

svn commit: r1139426 - in /pivot/trunk: examples/src/org/apache/pivot/examples/sheets/ tutorials/src/org/apache/pivot/tutorials/sheets/

Author: cbartlett
Date: Fri Jun 24 20:28:15 2011
New Revision: 1139426

URL: http://svn.apache.org/viewvc?rev=1139426&view=rev
Log:
Move example from 'tutorials' into 'examples'

Added:
    pivot/trunk/examples/src/org/apache/pivot/examples/sheets/SheetSlideDirectionWindow.java
      - copied, changed from r1139418, pivot/trunk/tutorials/src/org/apache/pivot/tutorials/sheets/Sheets.java
    pivot/trunk/examples/src/org/apache/pivot/examples/sheets/sheet_slide_direction.bxml
      - copied, changed from r1139418, pivot/trunk/tutorials/src/org/apache/pivot/tutorials/sheets/sheets.bxml
Removed:
    pivot/trunk/tutorials/src/org/apache/pivot/tutorials/sheets/Sheets.java
    pivot/trunk/tutorials/src/org/apache/pivot/tutorials/sheets/sheets.bxml

Copied: pivot/trunk/examples/src/org/apache/pivot/examples/sheets/SheetSlideDirectionWindow.java (from r1139418, pivot/trunk/tutorials/src/org/apache/pivot/tutorials/sheets/Sheets.java)
URL: http://svn.apache.org/viewvc/pivot/trunk/examples/src/org/apache/pivot/examples/sheets/SheetSlideDirectionWindow.java?p2=pivot/trunk/examples/src/org/apache/pivot/examples/sheets/SheetSlideDirectionWindow.java&p1=pivot/trunk/tutorials/src/org/apache/pivot/tutorials/sheets/Sheets.java&r1=1139418&r2=1139426&rev=1139426&view=diff
==============================================================================
--- pivot/trunk/tutorials/src/org/apache/pivot/tutorials/sheets/Sheets.java (original)
+++ pivot/trunk/examples/src/org/apache/pivot/examples/sheets/SheetSlideDirectionWindow.java Fri Jun 24 20:28:15 2011
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.pivot.tutorials.sheets;
+package org.apache.pivot.examples.sheets;
 
 import java.net.URL;
 import java.util.Iterator;
@@ -40,7 +40,7 @@ import org.apache.pivot.wtk.Window;
 import org.apache.pivot.wtk.WindowStateListener;
 import org.apache.pivot.wtk.skin.terra.TerraSheetSkin.SheetPlacement;
 
-public class Sheets extends Window implements Bindable {
+public class SheetSlideDirectionWindow extends Window implements Bindable {
 
     @BXML private Sheet sheet;
     @BXML private TablePane tablePane;

Copied: pivot/trunk/examples/src/org/apache/pivot/examples/sheets/sheet_slide_direction.bxml (from r1139418, pivot/trunk/tutorials/src/org/apache/pivot/tutorials/sheets/sheets.bxml)
URL: http://svn.apache.org/viewvc/pivot/trunk/examples/src/org/apache/pivot/examples/sheets/sheet_slide_direction.bxml?p2=pivot/trunk/examples/src/org/apache/pivot/examples/sheets/sheet_slide_direction.bxml&p1=pivot/trunk/tutorials/src/org/apache/pivot/tutorials/sheets/sheets.bxml&r1=1139418&r2=1139426&rev=1139426&view=diff
==============================================================================
--- pivot/trunk/tutorials/src/org/apache/pivot/tutorials/sheets/sheets.bxml (original)
+++ pivot/trunk/examples/src/org/apache/pivot/examples/sheets/sheet_slide_direction.bxml Fri Jun 24 20:28:15 2011
@@ -16,12 +16,12 @@ See the License for the specific languag
 limitations under the License.
 -->
 
-<sheets:Sheets
+<sheets:SheetSlideDirectionWindow
     xmlns:bxml="http://pivot.apache.org/bxml"
     xmlns="org.apache.pivot.wtk"
-    xmlns:sheets="org.apache.pivot.tutorials.sheets"
+    xmlns:sheets="org.apache.pivot.examples.sheets"
     xmlns:content="org.apache.pivot.wtk.content"
-    title="Sheets" maximized="true"
+    title="Sheet Slide Direction Example" maximized="true"
     width="600" height="600">
 
     <bxml:define>
@@ -118,4 +118,4 @@ limitations under the License.
 
     </Border>
 
-</sheets:Sheets>
+</sheets:SheetSlideDirectionWindow>