You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by tv...@apache.org on 2009/10/23 12:37:19 UTC

svn commit: r828992 - in /incubator/pivot/trunk: demos/ demos/src/org/apache/pivot/demos/explorer/ tools/src/org/apache/pivot/tools/wtk/

Author: tvolkert
Date: Fri Oct 23 10:37:18 2009
New Revision: 828992

URL: http://svn.apache.org/viewvc?rev=828992&view=rev
Log:
Moved the EventLogger to the tools project

Added:
    incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/
    incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/EventLogger.java
      - copied, changed from r828883, incubator/pivot/trunk/demos/src/org/apache/pivot/demos/explorer/EventLogger.java
    incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/EventLoggerListener.java
      - copied, changed from r828883, incubator/pivot/trunk/demos/src/org/apache/pivot/demos/explorer/EventLoggerListener.java
    incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/EventLoggerSkin.java
      - copied, changed from r828883, incubator/pivot/trunk/demos/src/org/apache/pivot/demos/explorer/EventLoggerSkin.java
    incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/EventLoggerSkin.json
      - copied unchanged from r828883, incubator/pivot/trunk/demos/src/org/apache/pivot/demos/explorer/EventLoggerSkin.json
    incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/event_logger_skin.wtkx
      - copied unchanged from r828883, incubator/pivot/trunk/demos/src/org/apache/pivot/demos/explorer/event_logger_skin.wtkx
Removed:
    incubator/pivot/trunk/demos/src/org/apache/pivot/demos/explorer/EventLogger.java
    incubator/pivot/trunk/demos/src/org/apache/pivot/demos/explorer/EventLoggerListener.java
    incubator/pivot/trunk/demos/src/org/apache/pivot/demos/explorer/EventLoggerSkin.java
    incubator/pivot/trunk/demos/src/org/apache/pivot/demos/explorer/EventLoggerSkin.json
    incubator/pivot/trunk/demos/src/org/apache/pivot/demos/explorer/event_logger_skin.wtkx
Modified:
    incubator/pivot/trunk/demos/.classpath
    incubator/pivot/trunk/demos/src/org/apache/pivot/demos/explorer/component_explorer.wtkx

Modified: incubator/pivot/trunk/demos/.classpath
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/demos/.classpath?rev=828992&r1=828991&r2=828992&view=diff
==============================================================================
--- incubator/pivot/trunk/demos/.classpath (original)
+++ incubator/pivot/trunk/demos/.classpath Fri Oct 23 10:37:18 2009
@@ -6,5 +6,6 @@
 	<classpathentry combineaccessrules="false" kind="src" path="/web"/>
 	<classpathentry combineaccessrules="false" kind="src" path="/wtk"/>
 	<classpathentry combineaccessrules="false" kind="src" path="/charts"/>
+	<classpathentry combineaccessrules="false" kind="src" path="/tools"/>
 	<classpathentry kind="output" path="bin"/>
 </classpath>

Modified: incubator/pivot/trunk/demos/src/org/apache/pivot/demos/explorer/component_explorer.wtkx
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/demos/src/org/apache/pivot/demos/explorer/component_explorer.wtkx?rev=828992&r1=828991&r2=828992&view=diff
==============================================================================
--- incubator/pivot/trunk/demos/src/org/apache/pivot/demos/explorer/component_explorer.wtkx (original)
+++ incubator/pivot/trunk/demos/src/org/apache/pivot/demos/explorer/component_explorer.wtkx Fri Oct 23 10:37:18 2009
@@ -18,7 +18,7 @@
 
 <Window title="Apache Pivot Component Explorer" maximized="true"
     xmlns:wtkx="http://pivot.apache.org/wtkx"
-    xmlns:explorer="org.apache.pivot.demos.explorer"
+    xmlns:tools="org.apache.pivot.tools.wtk"
     xmlns="org.apache.pivot.wtk">
     <content>
         <SplitPane orientation="vertical" splitRatio="0.6">
@@ -28,7 +28,7 @@
             <bottom>
                 <Border>
                     <content>
-                        <explorer:EventLogger wtkx:id="eventLogger" source="$treeView"/>
+                        <tools:EventLogger wtkx:id="eventLogger" source="$treeView"/>
                     </content>
                 </Border>
             </bottom>

Copied: incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/EventLogger.java (from r828883, incubator/pivot/trunk/demos/src/org/apache/pivot/demos/explorer/EventLogger.java)
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/EventLogger.java?p2=incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/EventLogger.java&p1=incubator/pivot/trunk/demos/src/org/apache/pivot/demos/explorer/EventLogger.java&r1=828883&r2=828992&rev=828992&view=diff
==============================================================================
--- incubator/pivot/trunk/demos/src/org/apache/pivot/demos/explorer/EventLogger.java (original)
+++ incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/EventLogger.java Fri Oct 23 10:37:18 2009
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.pivot.demos.explorer;
+package org.apache.pivot.tools.wtk;
 
 import java.lang.reflect.InvocationHandler;
 import java.lang.reflect.InvocationTargetException;
@@ -29,7 +29,6 @@
 import org.apache.pivot.collections.Group;
 import org.apache.pivot.collections.HashMap;
 import org.apache.pivot.collections.HashSet;
-import org.apache.pivot.collections.List;
 import org.apache.pivot.collections.Sequence;
 import org.apache.pivot.collections.immutable.ImmutableList;
 import org.apache.pivot.collections.immutable.ImmutableSet;

Copied: incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/EventLoggerListener.java (from r828883, incubator/pivot/trunk/demos/src/org/apache/pivot/demos/explorer/EventLoggerListener.java)
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/EventLoggerListener.java?p2=incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/EventLoggerListener.java&p1=incubator/pivot/trunk/demos/src/org/apache/pivot/demos/explorer/EventLoggerListener.java&r1=828883&r2=828992&rev=828992&view=diff
==============================================================================
--- incubator/pivot/trunk/demos/src/org/apache/pivot/demos/explorer/EventLoggerListener.java (original)
+++ incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/EventLoggerListener.java Fri Oct 23 10:37:18 2009
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.pivot.demos.explorer;
+package org.apache.pivot.tools.wtk;
 
 import java.lang.reflect.Method;
 

Copied: incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/EventLoggerSkin.java (from r828883, incubator/pivot/trunk/demos/src/org/apache/pivot/demos/explorer/EventLoggerSkin.java)
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/EventLoggerSkin.java?p2=incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/EventLoggerSkin.java&p1=incubator/pivot/trunk/demos/src/org/apache/pivot/demos/explorer/EventLoggerSkin.java&r1=828883&r2=828992&rev=828992&view=diff
==============================================================================
--- incubator/pivot/trunk/demos/src/org/apache/pivot/demos/explorer/EventLoggerSkin.java (original)
+++ incubator/pivot/trunk/tools/src/org/apache/pivot/tools/wtk/EventLoggerSkin.java Fri Oct 23 10:37:18 2009
@@ -14,9 +14,8 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.pivot.demos.explorer;
+package org.apache.pivot.tools.wtk;
 
-import java.awt.Graphics2D;
 import java.lang.reflect.Method;
 import java.io.IOException;
 import java.util.Arrays;