Author: ivaynberg
Date: Sun Oct 11 00:36:28 2009
New Revision: 823989

URL: http://svn.apache.org/viewvc?rev=823989&view=rev
Log:
remove ng model package

Removed:
    wicket/trunk/wicket/src/main/java/org/apache/wicket/ng/model/
Modified:
    
wicket/trunk/wicket/src/main/java/org/apache/wicket/ng/page/ManageablePage.java
    
wicket/trunk/wicket/src/main/java/org/apache/wicket/ng/request/component/RequestableComponent.java
    
wicket/trunk/wicket/src/main/java/org/apache/wicket/ng/util/lang/Generics.java

Modified: 
wicket/trunk/wicket/src/main/java/org/apache/wicket/ng/page/ManageablePage.java
URL: 
http://svn.apache.org/viewvc/wicket/trunk/wicket/src/main/java/org/apache/wicket/ng/page/ManageablePage.java?rev=823989&r1=823988&r2=823989&view=diff
==============================================================================
--- 
wicket/trunk/wicket/src/main/java/org/apache/wicket/ng/page/ManageablePage.java 
(original)
+++ 
wicket/trunk/wicket/src/main/java/org/apache/wicket/ng/page/ManageablePage.java 
Sun Oct 11 00:36:28 2009
@@ -1,6 +1,6 @@
 package org.apache.wicket.ng.page;
 
-import org.apache.wicket.ng.model.IDetachable;
+import org.apache.wicket.model.IDetachable;
 
 public interface ManageablePage extends IDetachable
 {

Modified: 
wicket/trunk/wicket/src/main/java/org/apache/wicket/ng/request/component/RequestableComponent.java
URL: 
http://svn.apache.org/viewvc/wicket/trunk/wicket/src/main/java/org/apache/wicket/ng/request/component/RequestableComponent.java?rev=823989&r1=823988&r2=823989&view=diff
==============================================================================
--- 
wicket/trunk/wicket/src/main/java/org/apache/wicket/ng/request/component/RequestableComponent.java
 (original)
+++ 
wicket/trunk/wicket/src/main/java/org/apache/wicket/ng/request/component/RequestableComponent.java
 Sun Oct 11 00:36:28 2009
@@ -19,7 +19,7 @@
 import java.util.List;
 
 import org.apache.wicket.behavior.IBehavior;
-import org.apache.wicket.ng.model.IDetachable;
+import org.apache.wicket.model.IDetachable;
 
 /**
  * Base interface for components. The purpose of this interface is to make 
certain parts of Wicket
@@ -42,14 +42,14 @@
         * @return The id of this component
         */
        public String getId();
-       
+
        /**
         * Returns page this component belongs to.
         * 
         * @return page instance or <code>null</code>
         */
        public RequestablePage getPage();
-       
+
        /**
         * Gets the component at the given path.
         * 
@@ -58,15 +58,15 @@
         * @return The component at the path
         */
        public RequestableComponent get(String path);
-       
+
        /**
-        * Returns true if the listener interface method can be called on this 
component. Normally
-        * this would check if component is enabled and visible in hierarchy.
+        * Returns true if the listener interface method can be called on this 
component. Normally this
+        * would check if component is enabled and visible in hierarchy.
         * 
         * @return
         */
        public boolean canCallListenerInterface();
-       
+
        /**
         * Gets the currently coupled {...@link IBehavior}s as a unmodifiable 
list. Returns an empty list
         * rather than null if there are no behaviors coupled to this component.

Modified: 
wicket/trunk/wicket/src/main/java/org/apache/wicket/ng/util/lang/Generics.java
URL: 
http://svn.apache.org/viewvc/wicket/trunk/wicket/src/main/java/org/apache/wicket/ng/util/lang/Generics.java?rev=823989&r1=823988&r2=823989&view=diff
==============================================================================
--- 
wicket/trunk/wicket/src/main/java/org/apache/wicket/ng/util/lang/Generics.java 
(original)
+++ 
wicket/trunk/wicket/src/main/java/org/apache/wicket/ng/util/lang/Generics.java 
Sun Oct 11 00:36:28 2009
@@ -21,7 +21,7 @@
 import java.util.Iterator;
 import java.util.concurrent.ConcurrentHashMap;
 
-import org.apache.wicket.ng.model.IModel;
+import org.apache.wicket.model.IModel;
 
 /**
  * Generics related utilities


Reply via email to