You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by te...@apache.org on 2006/10/09 22:28:46 UTC

svn commit: r454492 - in /incubator/harmony/enhanced/classlib/trunk/modules/applet/src/main/java/org/apache/harmony/applet: AppletThread.java Command.java

Author: tellison
Date: Mon Oct  9 13:28:46 2006
New Revision: 454492

URL: http://svn.apache.org/viewvc?view=rev&rev=454492
Log:
Break-out Command type to comply with auto-patternsets assumption.

Added:
    incubator/harmony/enhanced/classlib/trunk/modules/applet/src/main/java/org/apache/harmony/applet/Command.java   (with props)
Modified:
    incubator/harmony/enhanced/classlib/trunk/modules/applet/src/main/java/org/apache/harmony/applet/AppletThread.java

Modified: incubator/harmony/enhanced/classlib/trunk/modules/applet/src/main/java/org/apache/harmony/applet/AppletThread.java
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/applet/src/main/java/org/apache/harmony/applet/AppletThread.java?view=diff&rev=454492&r1=454491&r2=454492
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/applet/src/main/java/org/apache/harmony/applet/AppletThread.java (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/applet/src/main/java/org/apache/harmony/applet/AppletThread.java Mon Oct  9 13:28:46 2006
@@ -92,12 +92,3 @@
     
 }
 
-abstract class Command {
-    final String name;
-    
-    Command(String name) {
-        this.name = name;
-    }
-    
-    abstract void run();
-}

Added: incubator/harmony/enhanced/classlib/trunk/modules/applet/src/main/java/org/apache/harmony/applet/Command.java
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/applet/src/main/java/org/apache/harmony/applet/Command.java?view=auto&rev=454492
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/applet/src/main/java/org/apache/harmony/applet/Command.java (added)
+++ incubator/harmony/enhanced/classlib/trunk/modules/applet/src/main/java/org/apache/harmony/applet/Command.java Mon Oct  9 13:28:46 2006
@@ -0,0 +1,28 @@
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one or more
+ *  contributor license agreements.  See the NOTICE file distributed with
+ *  this work for additional information regarding copyright ownership.
+ *  The ASF licenses this file to You under the Apache License, Version 2.0
+ *  (the "License"); you may not use this file except in compliance with
+ *  the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License.
+ */
+
+package org.apache.harmony.applet;
+
+abstract class Command {
+    final String name;
+    
+    Command(String name) {
+        this.name = name;
+    }
+    
+    abstract void run();
+}

Propchange: incubator/harmony/enhanced/classlib/trunk/modules/applet/src/main/java/org/apache/harmony/applet/Command.java
------------------------------------------------------------------------------
    svn:eol-style = native