You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by jc...@apache.org on 2007/04/10 20:16:39 UTC

svn commit: r527232 [15/28] - in /incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src: main/java/ main/java/org/ main/java/org/apache/ main/java/org/apache/wicket/ main/java/org/apache/wicket/ajax/ main/java/org/apache/wicket/ajax/calldecorator/ ma...

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/DynamicByteArrayResource.java (from r527054, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/DynamicByteArrayResource.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/DynamicByteArrayResource.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/DynamicByteArrayResource.java&r1=527054&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/DynamicByteArrayResource.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/DynamicByteArrayResource.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/DynamicByteArrayResource.java Tue Apr 10 11:15:14 2007
@@ -14,19 +14,20 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.resource;
+package org.apache.wicket.resource;
 
 import java.io.ByteArrayInputStream;
 import java.io.IOException;
 import java.io.InputStream;
 import java.util.Locale;
 
-import wicket.markup.html.DynamicWebResource;
-import wicket.markup.html.WebResource;
-import wicket.util.resource.IResourceStream;
-import wicket.util.resource.ResourceStreamNotFoundException;
-import wicket.util.time.Duration;
-import wicket.util.time.Time;
+import org.apache.wicket.markup.html.DynamicWebResource;
+import org.apache.wicket.markup.html.WebResource;
+import org.apache.wicket.util.resource.IResourceStream;
+import org.apache.wicket.util.resource.ResourceStreamNotFoundException;
+import org.apache.wicket.util.time.Duration;
+import org.apache.wicket.util.time.Time;
+
 
 /**
  * Byte array resource class that supports dynamic (database or on the fly
@@ -140,7 +141,7 @@
 			private transient ResourceState data = null;
 
 			/**
-			 * @see wicket.util.resource.IResourceStream#close()
+			 * @see org.apache.wicket.util.resource.IResourceStream#close()
 			 */
 			public void close() throws IOException
 			{
@@ -153,7 +154,7 @@
 			}
 
 			/**
-			 * @see wicket.util.resource.IResourceStream#getContentType()
+			 * @see org.apache.wicket.util.resource.IResourceStream#getContentType()
 			 */
 			public String getContentType()
 			{
@@ -162,7 +163,7 @@
 			}
 
 			/**
-			 * @see wicket.util.resource.IResourceStream#getInputStream()
+			 * @see org.apache.wicket.util.resource.IResourceStream#getInputStream()
 			 */
 			public InputStream getInputStream() throws ResourceStreamNotFoundException
 			{
@@ -175,7 +176,7 @@
 			}
 
 			/**
-			 * @see wicket.util.watch.IModifiable#lastModifiedTime()
+			 * @see org.apache.wicket.util.watch.IModifiable#lastModifiedTime()
 			 */
 			public Time lastModifiedTime()
 			{
@@ -184,7 +185,7 @@
 			}
 
 			/**
-			 * @see wicket.util.resource.IResourceStream#length()
+			 * @see org.apache.wicket.util.resource.IResourceStream#length()
 			 */
 			public long length()
 			{
@@ -193,7 +194,7 @@
 			}
 
 			/**
-			 * @see wicket.util.resource.IResourceStream#getLocale()
+			 * @see org.apache.wicket.util.resource.IResourceStream#getLocale()
 			 */
 			public Locale getLocale()
 			{
@@ -201,7 +202,7 @@
 			}
 
 			/**
-			 * @see wicket.util.resource.IResourceStream#setLocale(java.util.Locale)
+			 * @see org.apache.wicket.util.resource.IResourceStream#setLocale(java.util.Locale)
 			 */
 			public void setLocale(Locale loc)
 			{
@@ -222,7 +223,7 @@
 	}
 
 	/**
-	 * @see wicket.Resource#invalidate()
+	 * @see org.apache.wicket.Resource#invalidate()
 	 */
 	public void invalidate()
 	{

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/IPropertiesChangeListener.java (from r527054, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/IPropertiesChangeListener.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/IPropertiesChangeListener.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/IPropertiesChangeListener.java&r1=527054&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/IPropertiesChangeListener.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/IPropertiesChangeListener.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/IPropertiesChangeListener.java Tue Apr 10 11:15:14 2007
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.resource;
+package org.apache.wicket.resource;
 
 /**
  * To be implemented by listeners interested in PropertiesFactory events fired

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/IPropertiesFactory.java (from r527054, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/IPropertiesFactory.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/IPropertiesFactory.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/IPropertiesFactory.java&r1=527054&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/IPropertiesFactory.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/IPropertiesFactory.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/IPropertiesFactory.java Tue Apr 10 11:15:14 2007
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.resource;
+package org.apache.wicket.resource;
 
 
 /**
@@ -25,7 +25,7 @@
  * called when a property resource has changed and it allows to clear the
  * locally cached properties.
  * 
- * @see wicket.resource.Properties
+ * @see org.apache.wicket.resource.Properties
  * 
  * @author Juergen Donnerstag
  */

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/Properties.java (from r527054, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/Properties.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/Properties.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/Properties.java&r1=527054&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/Properties.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/Properties.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/Properties.java Tue Apr 10 11:15:14 2007
@@ -14,9 +14,9 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.resource;
+package org.apache.wicket.resource;
 
-import wicket.util.value.ValueMap;
+import org.apache.wicket.util.value.ValueMap;
 
 /**
  * Kind of like java.util.Properties but based on Wicket's ValueMap and thus

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/PropertiesFactory.java (from r527054, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/PropertiesFactory.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/PropertiesFactory.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/PropertiesFactory.java&r1=527054&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/PropertiesFactory.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/PropertiesFactory.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/PropertiesFactory.java Tue Apr 10 11:15:14 2007
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.resource;
+package org.apache.wicket.resource;
 
 import java.io.BufferedInputStream;
 import java.io.IOException;
@@ -26,16 +26,16 @@
 
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
+import org.apache.wicket.Application;
+import org.apache.wicket.settings.IResourceSettings;
+import org.apache.wicket.util.concurrent.ConcurrentHashMap;
+import org.apache.wicket.util.listener.IChangeListener;
+import org.apache.wicket.util.resource.IResourceStream;
+import org.apache.wicket.util.resource.ResourceStreamNotFoundException;
+import org.apache.wicket.util.resource.locator.ResourceStreamLocator;
+import org.apache.wicket.util.value.ValueMap;
+import org.apache.wicket.util.watch.ModificationWatcher;
 
-import wicket.Application;
-import wicket.settings.IResourceSettings;
-import wicket.util.concurrent.ConcurrentHashMap;
-import wicket.util.listener.IChangeListener;
-import wicket.util.resource.IResourceStream;
-import wicket.util.resource.ResourceStreamNotFoundException;
-import wicket.util.resource.locator.ResourceStreamLocator;
-import wicket.util.value.ValueMap;
-import wicket.util.watch.ModificationWatcher;
 
 /**
  * Reloadable properties. It is not a 100% replacement for java.util.Properties
@@ -46,7 +46,7 @@
  * reloaded if a change to a property file has been detected (actually the cache
  * gets cleared which forces a reload on demand).
  * 
- * @see wicket.settings.IResourceSettings#getPropertiesFactory()
+ * @see org.apache.wicket.settings.IResourceSettings#getPropertiesFactory()
  * 
  * @author Juergen Donnerstag
  */
@@ -86,7 +86,7 @@
 	}
 
 	/**
-	 * @see wicket.resource.IPropertiesFactory#addListener(wicket.resource.IPropertiesChangeListener)
+	 * @see org.apache.wicket.resource.IPropertiesFactory#addListener(org.apache.wicket.resource.IPropertiesChangeListener)
 	 */
 	public void addListener(final IPropertiesChangeListener listener)
 	{
@@ -99,7 +99,7 @@
 
 	/**
 	 * 
-	 * @see wicket.resource.IPropertiesFactory#load(java.lang.Class, java.lang.String)
+	 * @see org.apache.wicket.resource.IPropertiesFactory#load(java.lang.Class, java.lang.String)
 	 */
 	public Properties load(final Class clazz, final String path)
 	{
@@ -144,7 +144,7 @@
 	}
 
 	/**
-	 * @see wicket.resource.IPropertiesFactory#clearCache()
+	 * @see org.apache.wicket.resource.IPropertiesFactory#clearCache()
 	 */
 	public final void clearCache()
 	{

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/loader/BundleStringResourceLoader.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/loader/BundleStringResourceLoader.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/loader/BundleStringResourceLoader.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/loader/BundleStringResourceLoader.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/loader/BundleStringResourceLoader.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/loader/BundleStringResourceLoader.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/loader/BundleStringResourceLoader.java Tue Apr 10 11:15:14 2007
@@ -14,13 +14,14 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.resource.loader;
+package org.apache.wicket.resource.loader;
 
 import java.util.Locale;
 import java.util.MissingResourceException;
 import java.util.ResourceBundle;
 
-import wicket.Component;
+import org.apache.wicket.Component;
+
 
 /**
  * Implementation of a string resource loader that sits on top of the ordinary
@@ -60,7 +61,7 @@
 	 *            The locale identifying the resource set to select the strings
 	 *            from
 	 * @param style
-	 *            Not used for this implementation (see {@link wicket.Session})
+	 *            Not used for this implementation (see {@link org.apache.wicket.Session})
 	 * @return The string resource value or null if resource not found
 	 */
 	public final String loadStringResource(final Class clazz, final String key, Locale locale,

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/loader/ClassStringResourceLoader.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/loader/ClassStringResourceLoader.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/loader/ClassStringResourceLoader.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/loader/ClassStringResourceLoader.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/loader/ClassStringResourceLoader.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/loader/ClassStringResourceLoader.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/loader/ClassStringResourceLoader.java Tue Apr 10 11:15:14 2007
@@ -14,12 +14,13 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.resource.loader;
+package org.apache.wicket.resource.loader;
 
 import java.util.Locale;
 
-import wicket.Component;
-import wicket.Session;
+import org.apache.wicket.Component;
+import org.apache.wicket.Session;
+
 
 /**
  * This string resource loader attempts to find a single resource bundle that
@@ -54,7 +55,7 @@
 	}
 
 	/**
-	 * @see wicket.resource.loader.ComponentStringResourceLoader#loadStringResource(java.lang.Class,
+	 * @see org.apache.wicket.resource.loader.ComponentStringResourceLoader#loadStringResource(java.lang.Class,
 	 *      java.lang.String, java.util.Locale, java.lang.String)
 	 */
 	public String loadStringResource(final Class clazz, final String key, final Locale locale,
@@ -64,7 +65,7 @@
 	}
 
 	/**
-	 * @see wicket.resource.loader.ComponentStringResourceLoader#loadStringResource(wicket.Component,
+	 * @see org.apache.wicket.resource.loader.ComponentStringResourceLoader#loadStringResource(org.apache.wicket.Component,
 	 *      java.lang.String)
 	 */
 	public String loadStringResource(Component component, String key)

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/loader/ComponentStringResourceLoader.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/loader/ComponentStringResourceLoader.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/loader/ComponentStringResourceLoader.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/loader/ComponentStringResourceLoader.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/loader/ComponentStringResourceLoader.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/loader/ComponentStringResourceLoader.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/loader/ComponentStringResourceLoader.java Tue Apr 10 11:15:14 2007
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.resource.loader;
+package org.apache.wicket.resource.loader;
 
 import java.util.ArrayList;
 import java.util.List;
@@ -22,18 +22,18 @@
 
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
+import org.apache.wicket.Application;
+import org.apache.wicket.Component;
+import org.apache.wicket.MarkupContainer;
+import org.apache.wicket.Page;
+import org.apache.wicket.markup.html.WebComponent;
+import org.apache.wicket.markup.html.WebMarkupContainer;
+import org.apache.wicket.markup.html.WebPage;
+import org.apache.wicket.resource.Properties;
+import org.apache.wicket.resource.PropertiesFactory;
+import org.apache.wicket.util.resource.locator.ResourceNameIterator;
+import org.apache.wicket.util.string.Strings;
 
-import wicket.Application;
-import wicket.Component;
-import wicket.MarkupContainer;
-import wicket.Page;
-import wicket.markup.html.WebComponent;
-import wicket.markup.html.WebMarkupContainer;
-import wicket.markup.html.WebPage;
-import wicket.resource.Properties;
-import wicket.resource.PropertiesFactory;
-import wicket.util.resource.locator.ResourceNameIterator;
-import wicket.util.string.Strings;
 
 /**
  * This is Wicket's default string resource loader.
@@ -130,7 +130,7 @@
 	 *            from
 	 * @param style
 	 *            The (optional) style identifying the resource set to select
-	 *            the strings from (see {@link wicket.Session})
+	 *            the strings from (see {@link org.apache.wicket.Session})
 	 * @return The string resource value or null if resource not found
 	 */
 	public String loadStringResource(Class clazz, final String key, final Locale locale,
@@ -207,14 +207,14 @@
 			return true;
 		}
 
-		// Stop at all wicket base classes
+		// Stop at all org.apache.wicket base classes
 		return clazz.equals(Page.class) || clazz.equals(MarkupContainer.class)
 				|| clazz.equals(Component.class);
 	}
 
 	/**
 	 * 
-	 * @see wicket.resource.loader.IStringResourceLoader#loadStringResource(wicket.Component,
+	 * @see org.apache.wicket.resource.loader.IStringResourceLoader#loadStringResource(org.apache.wicket.Component,
 	 *      java.lang.String)
 	 */
 	public String loadStringResource(final Component component, final String key)

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/loader/IStringResourceLoader.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/loader/IStringResourceLoader.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/loader/IStringResourceLoader.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/loader/IStringResourceLoader.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/loader/IStringResourceLoader.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/resource/loader/IStringResourceLoader.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/resource/loader/IStringResourceLoader.java Tue Apr 10 11:15:14 2007
@@ -14,11 +14,12 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.resource.loader;
+package org.apache.wicket.resource.loader;
 
 import java.util.Locale;
 
-import wicket.Component;
+import org.apache.wicket.Component;
+
 
 /**
  * The string resource loader interface allows a strategy pattern to be applied
@@ -36,7 +37,7 @@
  * exceptions that must be caught and handled each time until the correct loader
  * in the chain is reached.
  * 
- * @see wicket.settings.IResourceSettings
+ * @see org.apache.wicket.settings.IResourceSettings
  * 
  * @author Chris Turner
  * @author Juergen Donnerstag
@@ -63,7 +64,7 @@
 	 *            so that the appopriate set of resources can be selected
 	 * @param style
 	 *            The style identifying the resource set to select the strings
-	 *            from (see {@link wicket.Session})
+	 *            from (see {@link org.apache.wicket.Session})
 	 * @return The string resource value or null if the resource could not be
 	 *         loaded by this loader
 	 */

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/response/ConsoleResponse.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/response/ConsoleResponse.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/response/ConsoleResponse.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/response/ConsoleResponse.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/response/ConsoleResponse.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/response/ConsoleResponse.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/response/ConsoleResponse.java Tue Apr 10 11:15:14 2007
@@ -14,11 +14,12 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.response;
+package org.apache.wicket.response;
 
 import java.io.OutputStream;
 
-import wicket.Response;
+import org.apache.wicket.Response;
+
 
 /**
  * A Response implementation which writes to the console.
@@ -46,7 +47,7 @@
     }
 
     /**
-     * @see wicket.Response#write(CharSequence)
+     * @see org.apache.wicket.Response#write(CharSequence)
      */
     public void write(CharSequence string)
     {
@@ -54,7 +55,7 @@
     }
 
 	/**
-	 * @see wicket.Response#getOutputStream()
+	 * @see org.apache.wicket.Response#getOutputStream()
 	 */
 	public OutputStream getOutputStream()
 	{

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/response/FileResponse.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/response/FileResponse.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/response/FileResponse.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/response/FileResponse.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/response/FileResponse.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/response/FileResponse.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/response/FileResponse.java Tue Apr 10 11:15:14 2007
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.response;
+package org.apache.wicket.response;
 
 import java.io.BufferedWriter;
 import java.io.FileNotFoundException;
@@ -24,9 +24,10 @@
 import java.io.OutputStream;
 import java.io.PrintWriter;
 
-import wicket.Response;
-import wicket.WicketRuntimeException;
-import wicket.util.file.File;
+import org.apache.wicket.Response;
+import org.apache.wicket.WicketRuntimeException;
+import org.apache.wicket.util.file.File;
+
 
 /**
  * A Response implementation that writes to a file.
@@ -56,7 +57,7 @@
 	}
 
 	/**
-	 * @see wicket.Response#close()
+	 * @see org.apache.wicket.Response#close()
 	 */
 	public void close()
 	{
@@ -80,7 +81,7 @@
 	}
 
 	/**
-	 * @see wicket.Response#getOutputStream()
+	 * @see org.apache.wicket.Response#getOutputStream()
 	 */
 	public OutputStream getOutputStream()
 	{
@@ -99,7 +100,7 @@
 	}
 
 	/**
-	 * @see wicket.Response#write(CharSequence)
+	 * @see org.apache.wicket.Response#write(CharSequence)
 	 */
 	public void write(final CharSequence string)
 	{

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/response/NullResponse.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/response/NullResponse.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/response/NullResponse.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/response/NullResponse.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/response/NullResponse.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/response/NullResponse.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/response/NullResponse.java Tue Apr 10 11:15:14 2007
@@ -14,12 +14,13 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.response;
+package org.apache.wicket.response;
 
 import java.io.IOException;
 import java.io.OutputStream;
 
-import wicket.Response;
+import org.apache.wicket.Response;
+
 
 /**
  * Response implementation that discards all output.
@@ -47,7 +48,7 @@
 	}
 
 	/**
-	 * @see wicket.Response#write(CharSequence)
+	 * @see org.apache.wicket.Response#write(CharSequence)
 	 */
 	public void write(CharSequence string)
 	{
@@ -55,7 +56,7 @@
 	}
 
 	/**
-	 * @see wicket.Response#getOutputStream()
+	 * @see org.apache.wicket.Response#getOutputStream()
 	 */
 	public OutputStream getOutputStream()
 	{

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/response/StringResponse.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/response/StringResponse.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/response/StringResponse.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/response/StringResponse.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/response/StringResponse.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/response/StringResponse.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/response/StringResponse.java Tue Apr 10 11:15:14 2007
@@ -14,12 +14,13 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.response;
+package org.apache.wicket.response;
 
 import java.io.OutputStream;
 
-import wicket.Response;
-import wicket.util.string.AppendingStringBuffer;
+import org.apache.wicket.Response;
+import org.apache.wicket.util.string.AppendingStringBuffer;
+
 
 /**
  * Response object that writes to a StringWriter. If the StringResponse is later
@@ -43,7 +44,7 @@
 	}
 
 	/**
-	 * @see wicket.Response#write(CharSequence)
+	 * @see org.apache.wicket.Response#write(CharSequence)
 	 */
 	public void write(final CharSequence string)
 	{
@@ -51,7 +52,7 @@
 	}
 
 	/**
-	 * @see wicket.Response#reset()
+	 * @see org.apache.wicket.Response#reset()
 	 */
 	public void reset()
 	{
@@ -74,7 +75,7 @@
 	}
 
 	/**
-	 * @see wicket.Response#getOutputStream()
+	 * @see org.apache.wicket.Response#getOutputStream()
 	 */
 	public OutputStream getOutputStream()
 	{

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/session/DefaultPageFactory.java (from r527054, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/session/DefaultPageFactory.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/session/DefaultPageFactory.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/session/DefaultPageFactory.java&r1=527054&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/session/DefaultPageFactory.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/session/DefaultPageFactory.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/session/DefaultPageFactory.java Tue Apr 10 11:15:14 2007
@@ -14,25 +14,26 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.session;
+package org.apache.wicket.session;
 
 import java.lang.reflect.Constructor;
 import java.lang.reflect.InvocationTargetException;
 import java.util.Map;
 
-import wicket.AbortException;
-import wicket.IPageFactory;
-import wicket.Page;
-import wicket.PageParameters;
-import wicket.WicketRuntimeException;
-import wicket.authorization.AuthorizationException;
-import wicket.markup.MarkupException;
-import wicket.util.concurrent.ConcurrentHashMap;
+import org.apache.wicket.AbortException;
+import org.apache.wicket.IPageFactory;
+import org.apache.wicket.Page;
+import org.apache.wicket.PageParameters;
+import org.apache.wicket.WicketRuntimeException;
+import org.apache.wicket.authorization.AuthorizationException;
+import org.apache.wicket.markup.MarkupException;
+import org.apache.wicket.util.concurrent.ConcurrentHashMap;
+
 
 /**
  * A factory that constructs Pages.
  * 
- * @see wicket.settings.ISessionSettings#setPageFactory(IPageFactory)
+ * @see org.apache.wicket.settings.ISessionSettings#setPageFactory(IPageFactory)
  * @see IPageFactory
  * 
  * @author Juergen Donnerstag

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/session/ISessionStore.java (from r527054, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/session/ISessionStore.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/session/ISessionStore.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/session/ISessionStore.java&r1=527054&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/session/ISessionStore.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/session/ISessionStore.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/session/ISessionStore.java Tue Apr 10 11:15:14 2007
@@ -14,20 +14,21 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.session;
+package org.apache.wicket.session;
 
 import java.util.List;
 
 import javax.servlet.http.HttpSession;
 
-import wicket.IPageMap;
-import wicket.Page;
-import wicket.Request;
-import wicket.Session;
-import wicket.version.IPageVersionManager;
+import org.apache.wicket.IPageMap;
+import org.apache.wicket.Page;
+import org.apache.wicket.Request;
+import org.apache.wicket.Session;
+import org.apache.wicket.version.IPageVersionManager;
+
 
 /**
- * The actual store that is used by {@link wicket.Session} to store its
+ * The actual store that is used by {@link org.apache.wicket.Session} to store its
  * attributes.
  * 
  * @author Eelco Hillenius

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/session/pagemap/AbstractPageMapEntry.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/session/pagemap/AbstractPageMapEntry.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/session/pagemap/AbstractPageMapEntry.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/session/pagemap/AbstractPageMapEntry.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/session/pagemap/AbstractPageMapEntry.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/session/pagemap/AbstractPageMapEntry.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/session/pagemap/AbstractPageMapEntry.java Tue Apr 10 11:15:14 2007
@@ -14,9 +14,9 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.session.pagemap;
+package org.apache.wicket.session.pagemap;
 
-import wicket.Page;
+import org.apache.wicket.Page;
 
 /**
  * An abstract base class that makes it easier to create IPageMapEntry
@@ -29,7 +29,7 @@
 	private short id;
 
 	/**
-	 * @see wicket.session.pagemap.IPageMapEntry#getNumericId()
+	 * @see org.apache.wicket.session.pagemap.IPageMapEntry#getNumericId()
 	 */
 	public int getNumericId()
 	{
@@ -37,7 +37,7 @@
 	}
 
 	/**
-	 * @see wicket.session.pagemap.IPageMapEntry#getPage()
+	 * @see org.apache.wicket.session.pagemap.IPageMapEntry#getPage()
 	 */
 	public abstract Page getPage();
 
@@ -48,7 +48,7 @@
 	 * So, if there's an easy way to implement this method, that might be
 	 * desirable.
 	 * 
-	 * @see wicket.session.pagemap.IPageMapEntry#getPageClass()
+	 * @see org.apache.wicket.session.pagemap.IPageMapEntry#getPageClass()
 	 */
 	public Class getPageClass()
 	{
@@ -56,7 +56,7 @@
 	}
 
 	/**
-	 * @see wicket.session.pagemap.IPageMapEntry#setNumericId(int)
+	 * @see org.apache.wicket.session.pagemap.IPageMapEntry#setNumericId(int)
 	 */
 	public void setNumericId(int id)
 	{

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/session/pagemap/IPageMapEntry.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/session/pagemap/IPageMapEntry.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/session/pagemap/IPageMapEntry.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/session/pagemap/IPageMapEntry.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/session/pagemap/IPageMapEntry.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/session/pagemap/IPageMapEntry.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/session/pagemap/IPageMapEntry.java Tue Apr 10 11:15:14 2007
@@ -14,10 +14,10 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.session.pagemap;
+package org.apache.wicket.session.pagemap;
 
-import wicket.IClusterable;
-import wicket.Page;
+import org.apache.wicket.IClusterable;
+import org.apache.wicket.Page;
 
 /**
  * Some source which produces a page. Page implements IPageMapEntry by simply
@@ -27,7 +27,7 @@
  * id). The advantage of doing this is that you can save session memory (by
  * trading off against the processing power required to reconstruct the page).
  * 
- * @see wicket.session.pagemap.AbstractPageMapEntry
+ * @see org.apache.wicket.session.pagemap.AbstractPageMapEntry
  * @author Jonathan Locke
  */
 public interface IPageMapEntry extends IClusterable

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/session/pagemap/IPageMapEvictionStrategy.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/session/pagemap/IPageMapEvictionStrategy.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/session/pagemap/IPageMapEvictionStrategy.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/session/pagemap/IPageMapEvictionStrategy.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/session/pagemap/IPageMapEvictionStrategy.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/session/pagemap/IPageMapEvictionStrategy.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/session/pagemap/IPageMapEvictionStrategy.java Tue Apr 10 11:15:14 2007
@@ -14,10 +14,10 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.session.pagemap;
+package org.apache.wicket.session.pagemap;
 
-import wicket.IClusterable;
-import wicket.IPageMap;
+import org.apache.wicket.IClusterable;
+import org.apache.wicket.IPageMap;
 
 /**
  * Given a page map, evicts zero or more entries from the map according to some

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/session/pagemap/LeastRecentlyAccessedEvictionStrategy.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/session/pagemap/LeastRecentlyAccessedEvictionStrategy.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/session/pagemap/LeastRecentlyAccessedEvictionStrategy.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/session/pagemap/LeastRecentlyAccessedEvictionStrategy.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/session/pagemap/LeastRecentlyAccessedEvictionStrategy.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/session/pagemap/LeastRecentlyAccessedEvictionStrategy.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/session/pagemap/LeastRecentlyAccessedEvictionStrategy.java Tue Apr 10 11:15:14 2007
@@ -14,13 +14,13 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.session.pagemap;
+package org.apache.wicket.session.pagemap;
 
-import wicket.AccessStackPageMap;
-import wicket.IPageMap;
-import wicket.Page;
-import wicket.Session;
-import wicket.AccessStackPageMap.Access;
+import org.apache.wicket.AccessStackPageMap;
+import org.apache.wicket.IPageMap;
+import org.apache.wicket.Page;
+import org.apache.wicket.Session;
+import org.apache.wicket.AccessStackPageMap.Access;
 
 /**
  * A simple eviction strategy that evicts the least recently accessed page
@@ -51,7 +51,7 @@
 	}
 
 	/**
-	 * @see wicket.session.pagemap.IPageMapEvictionStrategy#evict(wicket.PageMap)
+	 * @see org.apache.wicket.session.pagemap.IPageMapEvictionStrategy#evict(org.apache.wicket.PageMap)
 	 */
 	public void evict(final IPageMap pageMap)
 	{

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IApplicationSettings.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IApplicationSettings.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IApplicationSettings.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IApplicationSettings.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IApplicationSettings.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IApplicationSettings.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IApplicationSettings.java Tue Apr 10 11:15:14 2007
@@ -14,13 +14,13 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.settings;
+package org.apache.wicket.settings;
 
-import wicket.Application;
-import wicket.application.IClassResolver;
-import wicket.protocol.http.WebApplication;
-import wicket.protocol.http.WebRequest;
-import wicket.util.convert.IConverterLocatorFactory;
+import org.apache.wicket.Application;
+import org.apache.wicket.application.IClassResolver;
+import org.apache.wicket.protocol.http.WebApplication;
+import org.apache.wicket.protocol.http.WebRequest;
+import org.apache.wicket.util.convert.IConverterLocatorFactory;
 
 /**
  * Settings interface for application settings.

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IDebugSettings.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IDebugSettings.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IDebugSettings.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IDebugSettings.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IDebugSettings.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IDebugSettings.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IDebugSettings.java Tue Apr 10 11:15:14 2007
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.settings;
+package org.apache.wicket.settings;
 
 /**
  * Settings interface for various debug settings

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IExceptionSettings.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IExceptionSettings.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IExceptionSettings.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IExceptionSettings.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IExceptionSettings.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IExceptionSettings.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IExceptionSettings.java Tue Apr 10 11:15:14 2007
@@ -14,9 +14,9 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.settings;
+package org.apache.wicket.settings;
 
-import wicket.util.lang.EnumeratedType;
+import org.apache.wicket.util.lang.EnumeratedType;
 
 
 /**

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IFrameworkSettings.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IFrameworkSettings.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IFrameworkSettings.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IFrameworkSettings.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IFrameworkSettings.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IFrameworkSettings.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IFrameworkSettings.java Tue Apr 10 11:15:14 2007
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.settings;
+package org.apache.wicket.settings;
 
 /**
  * Framework settings for retrieving and configuring framework settings.
@@ -26,7 +26,7 @@
 	/**
 	 * Gets the Wicket version. The Wicket version is in the same format as the
 	 * version element in the pom.xml file (project descriptor). The version is
-	 * generated by maven in the build/release cycle and put in the wicket.properties
+	 * generated by maven in the build/release cycle and put in the org.apache.wicket.properties
 	 * file located in the root folder of the Wicket jar.
 	 * 
 	 * The version usually follows one of the following formats: 

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IMarkupSettings.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IMarkupSettings.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IMarkupSettings.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IMarkupSettings.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IMarkupSettings.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IMarkupSettings.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IMarkupSettings.java Tue Apr 10 11:15:14 2007
@@ -14,10 +14,10 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.settings;
+package org.apache.wicket.settings;
 
-import wicket.markup.IMarkupParserFactory;
-import wicket.markup.MarkupParserFactory;
+import org.apache.wicket.markup.IMarkupParserFactory;
+import org.apache.wicket.markup.MarkupParserFactory;
 
 /**
  * Interface for markup related settings.
@@ -37,8 +37,8 @@
 	/**
 	 * If true, automatic link resolution is enabled. Disabled by default.
 	 * 
-	 * @see wicket.markup.resolver.AutoLinkResolver
-	 * @see wicket.markup.parser.filter.WicketLinkTagHandler
+	 * @see org.apache.wicket.markup.resolver.AutoLinkResolver
+	 * @see org.apache.wicket.markup.parser.filter.WicketLinkTagHandler
 	 * @return Returns the automaticLinking.
 	 */
 	boolean getAutomaticLinking();
@@ -78,9 +78,9 @@
 	boolean getStripComments();
 
 	/**
-	 * Gets whether to remove wicket tags from the output.
+	 * Gets whether to remove org.apache.wicket tags from the output.
 	 * 
-	 * @return whether to remove wicket tags from the output
+	 * @return whether to remove org.apache.wicket tags from the output
 	 */
 	boolean getStripWicketTags();
 
@@ -94,8 +94,8 @@
 	/**
 	 * Application default for automatic link resolution. Please
 	 * 
-	 * @see wicket.markup.resolver.AutoLinkResolver and
-	 * @see wicket.markup.parser.filter.WicketLinkTagHandler for more details.
+	 * @see org.apache.wicket.markup.resolver.AutoLinkResolver and
+	 * @see org.apache.wicket.markup.parser.filter.WicketLinkTagHandler for more details.
 	 * 
 	 * @param automaticLinking
 	 *            The automaticLinking to set.
@@ -161,10 +161,10 @@
 	void setStripComments(boolean stripComments);
 
 	/**
-	 * Sets whether to remove wicket tags from the output.
+	 * Sets whether to remove org.apache.wicket tags from the output.
 	 * 
 	 * @param stripWicketTags
-	 *            whether to remove wicket tags from the output
+	 *            whether to remove org.apache.wicket tags from the output
 	 */
 	void setStripWicketTags(boolean stripWicketTags);
 

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IPageSettings.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IPageSettings.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IPageSettings.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IPageSettings.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IPageSettings.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IPageSettings.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IPageSettings.java Tue Apr 10 11:15:14 2007
@@ -14,13 +14,14 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.settings;
+package org.apache.wicket.settings;
 
 import java.util.List;
 
-import wicket.markup.html.WebPage;
-import wicket.markup.resolver.AutoComponentResolver;
-import wicket.markup.resolver.IComponentResolver;
+import org.apache.wicket.markup.html.WebPage;
+import org.apache.wicket.markup.resolver.AutoComponentResolver;
+import org.apache.wicket.markup.resolver.IComponentResolver;
+
 
 /**
  * Interface for page related settings.

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IRequestCycleSettings.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IRequestCycleSettings.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IRequestCycleSettings.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IRequestCycleSettings.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IRequestCycleSettings.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IRequestCycleSettings.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IRequestCycleSettings.java Tue Apr 10 11:15:14 2007
@@ -14,18 +14,19 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.settings;
+package org.apache.wicket.settings;
 
 import java.util.List;
 
-import wicket.IResponseFilter;
-import wicket.RequestCycle;
-import wicket.Session;
-import wicket.markup.html.pages.BrowserInfoPage;
-import wicket.protocol.http.WebRequestCycle;
-import wicket.settings.IExceptionSettings.UnexpectedExceptionDisplay;
-import wicket.util.lang.EnumeratedType;
-import wicket.util.time.Duration;
+import org.apache.wicket.IResponseFilter;
+import org.apache.wicket.RequestCycle;
+import org.apache.wicket.Session;
+import org.apache.wicket.markup.html.pages.BrowserInfoPage;
+import org.apache.wicket.protocol.http.WebRequestCycle;
+import org.apache.wicket.settings.IExceptionSettings.UnexpectedExceptionDisplay;
+import org.apache.wicket.util.lang.EnumeratedType;
+import org.apache.wicket.util.time.Duration;
+
 
 /**
  * Inteface for request related settings
@@ -213,7 +214,7 @@
 	Duration getTimeout();
 
 	/**
-	 * @see wicket.settings.IExceptionSettings#getUnexpectedExceptionDisplay()
+	 * @see org.apache.wicket.settings.IExceptionSettings#getUnexpectedExceptionDisplay()
 	 * 
 	 * @return UnexpectedExceptionDisplay
 	 */
@@ -322,7 +323,7 @@
 	void setTimeout(Duration timeout);
 
 	/**
-	 * @see wicket.settings.IExceptionSettings#setUnexpectedExceptionDisplay(wicket.settings.Settings.UnexpectedExceptionDisplay)
+	 * @see org.apache.wicket.settings.IExceptionSettings#setUnexpectedExceptionDisplay(org.apache.wicket.settings.Settings.UnexpectedExceptionDisplay)
 	 * 
 	 * @param unexpectedExceptionDisplay
 	 */

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IRequestLoggerSettings.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IRequestLoggerSettings.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IRequestLoggerSettings.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IRequestLoggerSettings.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IRequestLoggerSettings.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IRequestLoggerSettings.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IRequestLoggerSettings.java Tue Apr 10 11:15:14 2007
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.settings;
+package org.apache.wicket.settings;
 
 /**
  * @author jcompagner

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IResourceSettings.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IResourceSettings.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IResourceSettings.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IResourceSettings.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IResourceSettings.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/IResourceSettings.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/IResourceSettings.java Tue Apr 10 11:15:14 2007
@@ -14,22 +14,23 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.settings;
+package org.apache.wicket.settings;
 
 import java.util.List;
 
-import wicket.IResourceFactory;
-import wicket.Localizer;
-import wicket.markup.html.IPackageResourceGuard;
-import wicket.markup.html.JavascriptPackageResource;
-import wicket.markup.html.PackageResourceGuard;
-import wicket.model.IModel;
-import wicket.resource.IPropertiesFactory;
-import wicket.resource.loader.IStringResourceLoader;
-import wicket.util.file.IResourceFinder;
-import wicket.util.resource.locator.IResourceStreamLocator;
-import wicket.util.time.Duration;
-import wicket.util.watch.ModificationWatcher;
+import org.apache.wicket.IResourceFactory;
+import org.apache.wicket.Localizer;
+import org.apache.wicket.markup.html.IPackageResourceGuard;
+import org.apache.wicket.markup.html.JavascriptPackageResource;
+import org.apache.wicket.markup.html.PackageResourceGuard;
+import org.apache.wicket.model.IModel;
+import org.apache.wicket.resource.IPropertiesFactory;
+import org.apache.wicket.resource.loader.IStringResourceLoader;
+import org.apache.wicket.util.file.IResourceFinder;
+import org.apache.wicket.util.resource.locator.IResourceStreamLocator;
+import org.apache.wicket.util.time.Duration;
+import org.apache.wicket.util.watch.ModificationWatcher;
+
 
 /**
  * Interface for resource related settings
@@ -56,16 +57,16 @@
  * <i>Resource Factories </i>- Resource factories can be used to create
  * resources dynamically from specially formatted HTML tag attribute values. For
  * more details, see {@link IResourceFactory},
- * {@link wicket.markup.html.image.resource.DefaultButtonImageResourceFactory}
+ * {@link org.apache.wicket.markup.html.image.resource.DefaultButtonImageResourceFactory}
  * and especially
- * {@link wicket.markup.html.image.resource.LocalizedImageResource}.
+ * {@link org.apache.wicket.markup.html.image.resource.LocalizedImageResource}.
  * <p>
  * <i>A Localizer </i> The getLocalizer() method returns an object encapsulating
  * all of the functionality required to access localized resources. For many
  * localization problems, even this will not be required, as there are
  * convenience methods available to all components:
- * {@link wicket.Component#getString(String key)} and
- * {@link wicket.Component#getString(String key, IModel model)}.
+ * {@link org.apache.wicket.Component#getString(String key)} and
+ * {@link org.apache.wicket.Component#getString(String key, IModel model)}.
  * <p>
  * <i>stringResourceLoaders </i>- A chain of <code>IStringResourceLoader</code>
  * instances that are searched in order to obtain string resources used during
@@ -113,7 +114,7 @@
 	/**
 	 * Get the application's localizer.
 	 * 
-	 * @see IResourceSettings#addStringResourceLoader(wicket.resource.loader.IStringResourceLoader)
+	 * @see IResourceSettings#addStringResourceLoader(org.apache.wicket.resource.loader.IStringResourceLoader)
 	 *      for means of extending the way Wicket resolves keys to localized
 	 *      messages.
 	 * 
@@ -177,7 +178,7 @@
 	List getStringResourceLoaders();
 
 	/**
-	 * @see wicket.settings.IExceptionSettings#getThrowExceptionOnMissingResource()
+	 * @see org.apache.wicket.settings.IExceptionSettings#getThrowExceptionOnMissingResource()
 	 * 
 	 * @return boolean
 	 */
@@ -235,7 +236,7 @@
 	void setResourceStreamLocator(IResourceStreamLocator resourceStreamLocator);
 
 	/**
-	 * @see wicket.settings.IExceptionSettings#setThrowExceptionOnMissingResource(boolean)
+	 * @see org.apache.wicket.settings.IExceptionSettings#setThrowExceptionOnMissingResource(boolean)
 	 * 
 	 * @param throwExceptionOnMissingResource
 	 */

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/ISecuritySettings.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/ISecuritySettings.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/ISecuritySettings.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/ISecuritySettings.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/ISecuritySettings.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/ISecuritySettings.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/ISecuritySettings.java Tue Apr 10 11:15:14 2007
@@ -14,12 +14,12 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.settings;
+package org.apache.wicket.settings;
 
-import wicket.authorization.IAuthorizationStrategy;
-import wicket.authorization.IUnauthorizedComponentInstantiationListener;
-import wicket.markup.html.form.persistence.CookieValuePersisterSettings;
-import wicket.util.crypt.ICryptFactory;
+import org.apache.wicket.authorization.IAuthorizationStrategy;
+import org.apache.wicket.authorization.IUnauthorizedComponentInstantiationListener;
+import org.apache.wicket.markup.html.form.persistence.CookieValuePersisterSettings;
+import org.apache.wicket.util.crypt.ICryptFactory;
 
 /**
  * Interface for security related settings

Copied: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/ISessionSettings.java (from r527216, incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/ISessionSettings.java)
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/ISessionSettings.java?view=diff&rev=527232&p1=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/ISessionSettings.java&r1=527216&p2=incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/ISessionSettings.java&r2=527232
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/wicket/settings/ISessionSettings.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/settings/ISessionSettings.java Tue Apr 10 11:15:14 2007
@@ -14,10 +14,10 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package wicket.settings;
+package org.apache.wicket.settings;
 
-import wicket.IPageFactory;
-import wicket.session.pagemap.IPageMapEvictionStrategy;
+import org.apache.wicket.IPageFactory;
+import org.apache.wicket.session.pagemap.IPageMapEvictionStrategy;
 
 /**
  * Interface for session related settings