Return-Path: Delivered-To: apmail-tapestry-dev-archive@www.apache.org Received: (qmail 71900 invoked from network); 20 May 2008 18:54:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 20 May 2008 18:54:52 -0000 Received: (qmail 26951 invoked by uid 500); 20 May 2008 18:54:48 -0000 Delivered-To: apmail-tapestry-dev-archive@tapestry.apache.org Received: (qmail 26894 invoked by uid 500); 20 May 2008 18:54:48 -0000 Mailing-List: contact commits-help@tapestry.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tapestry.apache.org Delivered-To: mailing list commits@tapestry.apache.org Received: (qmail 26864 invoked by uid 99); 20 May 2008 18:54:48 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 May 2008 11:54:48 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 May 2008 18:54:07 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id BC6442388A10; Tue, 20 May 2008 11:53:59 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r658390 [12/32] - in /tapestry/tapestry5/branches/hlship-20080520: ./ quickstart/src/main/resources/META-INF/ quickstart/src/main/resources/archetype-resources/src/main/java/pages/ quickstart/src/main/resources/archetype-resources/src/main/... Date: Tue, 20 May 2008 18:52:29 -0000 To: commits@tapestry.apache.org From: hlship@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080520185359.BC6442388A10@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/transform/UnclaimedFieldWorker.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/transform/UnclaimedFieldWorker.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/transform/UnclaimedFieldWorker.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/transform/UnclaimedFieldWorker.java Tue May 20 11:51:35 2008 @@ -12,13 +12,13 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.internal.transform; +package org.apache.tapestry5.internal.transform; -import org.apache.tapestry.model.MutableComponentModel; -import org.apache.tapestry.services.ClassTransformation; -import org.apache.tapestry.services.ComponentClassTransformWorker; -import static org.apache.tapestry.services.TransformConstants.CONTAINING_PAGE_DID_DETACH_SIGNATURE; -import static org.apache.tapestry.services.TransformConstants.CONTAINING_PAGE_DID_LOAD_SIGNATURE; +import org.apache.tapestry5.model.MutableComponentModel; +import org.apache.tapestry5.services.ClassTransformation; +import org.apache.tapestry5.services.ComponentClassTransformWorker; +import static org.apache.tapestry5.services.TransformConstants.CONTAINING_PAGE_DID_DETACH_SIGNATURE; +import static org.apache.tapestry5.services.TransformConstants.CONTAINING_PAGE_DID_LOAD_SIGNATURE; import java.lang.reflect.Modifier; import java.util.List; @@ -26,7 +26,7 @@ /** * Designed to be just about the last worker in the pipeline. Its job is to add cleanup code that restores transient * fields back to their initial (null) value. Fields that have been previously {@link - * org.apache.tapestry.services.ClassTransformation#claimField(String, Object) claimed} are ignored, as are fields that + * org.apache.tapestry5.services.ClassTransformation#claimField(String, Object) claimed} are ignored, as are fields that * are final. */ public final class UnclaimedFieldWorker implements ComponentClassTransformWorker Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/translator/ByteTranslator.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/translator/ByteTranslator.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/translator/ByteTranslator.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/translator/ByteTranslator.java Tue May 20 11:51:35 2008 @@ -12,11 +12,11 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.internal.translator; +package org.apache.tapestry5.internal.translator; -import org.apache.tapestry.Translator; -import org.apache.tapestry.ValidationException; -import org.apache.tapestry.ioc.Messages; +import org.apache.tapestry5.Translator; +import org.apache.tapestry5.ValidationException; +import org.apache.tapestry5.ioc.Messages; public class ByteTranslator implements Translator { Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/translator/DoubleTranslator.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/translator/DoubleTranslator.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/translator/DoubleTranslator.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/translator/DoubleTranslator.java Tue May 20 11:51:35 2008 @@ -12,11 +12,11 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.internal.translator; +package org.apache.tapestry5.internal.translator; -import org.apache.tapestry.Translator; -import org.apache.tapestry.ValidationException; -import org.apache.tapestry.ioc.Messages; +import org.apache.tapestry5.Translator; +import org.apache.tapestry5.ValidationException; +import org.apache.tapestry5.ioc.Messages; public class DoubleTranslator implements Translator { Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/translator/FloatTranslator.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/translator/FloatTranslator.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/translator/FloatTranslator.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/translator/FloatTranslator.java Tue May 20 11:51:35 2008 @@ -12,11 +12,11 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.internal.translator; +package org.apache.tapestry5.internal.translator; -import org.apache.tapestry.Translator; -import org.apache.tapestry.ValidationException; -import org.apache.tapestry.ioc.Messages; +import org.apache.tapestry5.Translator; +import org.apache.tapestry5.ValidationException; +import org.apache.tapestry5.ioc.Messages; public class FloatTranslator implements Translator { Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/translator/IntegerTranslator.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/translator/IntegerTranslator.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/translator/IntegerTranslator.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/translator/IntegerTranslator.java Tue May 20 11:51:35 2008 @@ -12,11 +12,11 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.internal.translator; +package org.apache.tapestry5.internal.translator; -import org.apache.tapestry.Translator; -import org.apache.tapestry.ValidationException; -import org.apache.tapestry.ioc.Messages; +import org.apache.tapestry5.Translator; +import org.apache.tapestry5.ValidationException; +import org.apache.tapestry5.ioc.Messages; /** * A translator for type integer. Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/translator/LongTranslator.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/translator/LongTranslator.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/translator/LongTranslator.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/translator/LongTranslator.java Tue May 20 11:51:35 2008 @@ -12,11 +12,11 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.internal.translator; +package org.apache.tapestry5.internal.translator; -import org.apache.tapestry.Translator; -import org.apache.tapestry.ValidationException; -import org.apache.tapestry.ioc.Messages; +import org.apache.tapestry5.Translator; +import org.apache.tapestry5.ValidationException; +import org.apache.tapestry5.ioc.Messages; /** * A translator for type long. Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/translator/StringTranslator.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/translator/StringTranslator.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/translator/StringTranslator.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/translator/StringTranslator.java Tue May 20 11:51:35 2008 @@ -12,11 +12,11 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.internal.translator; +package org.apache.tapestry5.internal.translator; -import org.apache.tapestry.Translator; -import org.apache.tapestry.ValidationException; -import org.apache.tapestry.ioc.Messages; +import org.apache.tapestry5.Translator; +import org.apache.tapestry5.ValidationException; +import org.apache.tapestry5.ioc.Messages; public class StringTranslator implements Translator { Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/Base64InputStream.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/Base64InputStream.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/Base64InputStream.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/Base64InputStream.java Tue May 20 11:51:35 2008 @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.internal.util; +package org.apache.tapestry5.internal.util; import org.apache.commons.codec.binary.Base64; Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/Base64ObjectInputStream.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/Base64ObjectInputStream.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/Base64ObjectInputStream.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/Base64ObjectInputStream.java Tue May 20 11:51:35 2008 @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.internal.util; +package org.apache.tapestry5.internal.util; import java.io.BufferedInputStream; import java.io.IOException; Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/Base64ObjectOutputStream.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/Base64ObjectOutputStream.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/Base64ObjectOutputStream.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/Base64ObjectOutputStream.java Tue May 20 11:51:35 2008 @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.internal.util; +package org.apache.tapestry5.internal.util; import java.io.BufferedOutputStream; import java.io.IOException; Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/Base64OutputStream.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/Base64OutputStream.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/Base64OutputStream.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/Base64OutputStream.java Tue May 20 11:51:35 2008 @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.internal.util; +package org.apache.tapestry5.internal.util; import org.apache.commons.codec.binary.Base64; Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/Holder.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/Holder.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/Holder.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/Holder.java Tue May 20 11:51:35 2008 @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.internal.util; +package org.apache.tapestry5.internal.util; import java.util.concurrent.atomic.AtomicReference; Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/IntegerRange.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/IntegerRange.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/IntegerRange.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/IntegerRange.java Tue May 20 11:51:35 2008 @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.internal.util; +package org.apache.tapestry5.internal.util; import java.util.Iterator; Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/MethodInvocationBuilder.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/MethodInvocationBuilder.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/MethodInvocationBuilder.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/MethodInvocationBuilder.java Tue May 20 11:51:35 2008 @@ -12,12 +12,12 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.internal.util; +package org.apache.tapestry5.internal.util; -import org.apache.tapestry.ioc.internal.util.CollectionFactory; -import org.apache.tapestry.services.ClassTransformation; -import org.apache.tapestry.services.TransformMethodSignature; -import org.apache.tapestry.services.TransformUtils; +import org.apache.tapestry5.ioc.internal.util.CollectionFactory; +import org.apache.tapestry5.services.ClassTransformation; +import org.apache.tapestry5.services.TransformMethodSignature; +import org.apache.tapestry5.services.TransformUtils; import java.util.Map; Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/MultiKey.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/MultiKey.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/MultiKey.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/MultiKey.java Tue May 20 11:51:35 2008 @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.internal.util; +package org.apache.tapestry5.internal.util; import java.util.Arrays; Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/NotificationEventCallback.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/NotificationEventCallback.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/NotificationEventCallback.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/NotificationEventCallback.java Tue May 20 11:51:35 2008 @@ -12,12 +12,12 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.internal.util; +package org.apache.tapestry5.internal.util; -import org.apache.tapestry.ComponentEventCallback; +import org.apache.tapestry5.ComponentEventCallback; /** - * A {@link org.apache.tapestry.ComponentEventCallback} used for notification events. Event handler methods may return + * A {@link org.apache.tapestry5.ComponentEventCallback} used for notification events. Event handler methods may return * true (to abort the event) or false (to allow the event to continue bubbling up), but all other values are forbidden. */ public class NotificationEventCallback implements ComponentEventCallback Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/ParameterBuilder.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/ParameterBuilder.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/ParameterBuilder.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/ParameterBuilder.java Tue May 20 11:51:35 2008 @@ -12,12 +12,12 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.internal.util; +package org.apache.tapestry5.internal.util; -import org.apache.tapestry.services.ClassTransformation; +import org.apache.tapestry5.services.ClassTransformation; /** - * Builds single parameter value to pass into a method being invoked by a {@link org.apache.tapestry.internal.util.MethodInvocationBuilder}. + * Builds single parameter value to pass into a method being invoked by a {@link org.apache.tapestry5.internal.util.MethodInvocationBuilder}. */ public interface ParameterBuilder { Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/PrintOutCollector.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/PrintOutCollector.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/PrintOutCollector.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/PrintOutCollector.java Tue May 20 11:51:35 2008 @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.internal.util; +package org.apache.tapestry5.internal.util; import java.io.PrintWriter; import java.io.StringWriter; Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/SelectModelRenderer.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/SelectModelRenderer.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/SelectModelRenderer.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/SelectModelRenderer.java Tue May 20 11:51:35 2008 @@ -12,9 +12,9 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.internal.util; +package org.apache.tapestry5.internal.util; -import org.apache.tapestry.*; +import org.apache.tapestry5.*; import java.util.Map; Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/StringParameterBuilder.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/StringParameterBuilder.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/StringParameterBuilder.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/StringParameterBuilder.java Tue May 20 11:51:35 2008 @@ -12,14 +12,14 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.internal.util; +package org.apache.tapestry5.internal.util; -import org.apache.tapestry.services.ClassTransformation; +import org.apache.tapestry5.services.ClassTransformation; import static java.lang.String.format; /** - * Implementation of {@link org.apache.tapestry.internal.util.ParameterBuilder} that simply provides a static string + * Implementation of {@link org.apache.tapestry5.internal.util.ParameterBuilder} that simply provides a static string * value for the parameter expression. */ public final class StringParameterBuilder implements ParameterBuilder Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/URLChangeTracker.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/URLChangeTracker.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/URLChangeTracker.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/URLChangeTracker.java Tue May 20 11:51:35 2008 @@ -12,9 +12,9 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.internal.util; +package org.apache.tapestry5.internal.util; -import org.apache.tapestry.ioc.internal.util.CollectionFactory; +import org.apache.tapestry5.ioc.internal.util.CollectionFactory; import java.io.File; import java.io.IOException; Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/UtilMessages.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/UtilMessages.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/UtilMessages.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/internal/util/UtilMessages.java Tue May 20 11:51:35 2008 @@ -12,10 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.internal.util; +package org.apache.tapestry5.internal.util; -import org.apache.tapestry.ioc.Messages; -import org.apache.tapestry.ioc.internal.util.MessagesImpl; +import org.apache.tapestry5.ioc.Messages; +import org.apache.tapestry5.ioc.internal.util.MessagesImpl; class UtilMessages { Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/json/json/JSONArray.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/json/json/JSONArray.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/json/json/JSONArray.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/json/json/JSONArray.java Tue May 20 11:51:35 2008 @@ -38,7 +38,7 @@ SOFTWARE. */ -import org.apache.tapestry.ioc.internal.util.CollectionFactory; +import org.apache.tapestry5.ioc.internal.util.CollectionFactory; import java.util.List; @@ -430,4 +430,4 @@ return list.equals(other.list); } -} \ No newline at end of file +} Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/json/json/JSONObject.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/json/json/JSONObject.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/json/json/JSONObject.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/json/json/JSONObject.java Tue May 20 11:51:35 2008 @@ -38,7 +38,7 @@ SOFTWARE. */ -import org.apache.tapestry.ioc.internal.util.CollectionFactory; +import org.apache.tapestry5.ioc.internal.util.CollectionFactory; import java.util.Map; import java.util.Set; @@ -851,4 +851,4 @@ return properties.equals(other.properties); } -} \ No newline at end of file +} Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/json/json/JSONTokener.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/json/json/JSONTokener.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/json/json/JSONTokener.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/json/json/JSONTokener.java Tue May 20 11:51:35 2008 @@ -525,4 +525,4 @@ { return " at character " + index + " of " + source; } -} \ No newline at end of file +} Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/model/ComponentModel.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/model/ComponentModel.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/model/ComponentModel.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/model/ComponentModel.java Tue May 20 11:51:35 2008 @@ -12,12 +12,12 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.model; +package org.apache.tapestry5.model; -import org.apache.tapestry.annotation.MixinAfter; -import org.apache.tapestry.annotation.Persist; -import org.apache.tapestry.annotation.SupportsInformalParameters; -import org.apache.tapestry.ioc.Resource; +import org.apache.tapestry5.annotations.MixinAfter; +import org.apache.tapestry5.annotations.Persist; +import org.apache.tapestry5.annotations.SupportsInformalParameters; +import org.apache.tapestry5.ioc.Resource; import org.slf4j.Logger; import java.util.List; @@ -44,7 +44,7 @@ /** * Returns the ids of all embedded components defined within the component class (via the {@link - * org.apache.tapestry.annotation.Component} annotation). + * org.apache.tapestry5.annotations.Component} annotation). */ List getEmbeddedComponentIds(); Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/model/EmbeddedComponentModel.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/model/EmbeddedComponentModel.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/model/EmbeddedComponentModel.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/model/EmbeddedComponentModel.java Tue May 20 11:51:35 2008 @@ -12,16 +12,16 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.model; +package org.apache.tapestry5.model; -import org.apache.tapestry.annotation.Component; -import org.apache.tapestry.ioc.Locatable; +import org.apache.tapestry5.annotations.Component; +import org.apache.tapestry5.ioc.Locatable; import java.util.List; /** * The model for a component embedded within another component, as defined by the {@link - * org.apache.tapestry.annotation.Component} annotation. + * org.apache.tapestry5.annotations.Component} annotation. */ public interface EmbeddedComponentModel extends Locatable { Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/model/MutableComponentModel.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/model/MutableComponentModel.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/model/MutableComponentModel.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/model/MutableComponentModel.java Tue May 20 11:51:35 2008 @@ -12,15 +12,15 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.model; +package org.apache.tapestry5.model; -import org.apache.tapestry.annotation.Parameter; -import org.apache.tapestry.annotation.Persist; -import org.apache.tapestry.internal.InternalComponentResources; -import org.apache.tapestry.ioc.Location; +import org.apache.tapestry5.annotations.Parameter; +import org.apache.tapestry5.annotations.Persist; +import org.apache.tapestry5.internal.InternalComponentResources; +import org.apache.tapestry5.ioc.Location; /** - * Mutable version of {@link org.apache.tapestry.model.ComponentModel} used during the transformation phase. + * Mutable version of {@link org.apache.tapestry5.model.ComponentModel} used during the transformation phase. */ public interface MutableComponentModel extends ComponentModel { Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/model/MutableEmbeddedComponentModel.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/model/MutableEmbeddedComponentModel.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/model/MutableEmbeddedComponentModel.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/model/MutableEmbeddedComponentModel.java Tue May 20 11:51:35 2008 @@ -12,10 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.model; +package org.apache.tapestry5.model; /** - * A mutable version of {@link org.apache.tapestry.model.EmbeddedComponentModel} that allows the parameters to be + * A mutable version of {@link org.apache.tapestry5.model.EmbeddedComponentModel} that allows the parameters to be * incrementally stored. */ public interface MutableEmbeddedComponentModel extends EmbeddedComponentModel Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/model/ParameterModel.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/model/ParameterModel.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/model/ParameterModel.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/model/ParameterModel.java Tue May 20 11:51:35 2008 @@ -12,9 +12,9 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.model; +package org.apache.tapestry5.model; -import org.apache.tapestry.annotation.Parameter; +import org.apache.tapestry5.annotations.Parameter; /** * Model for a formal parameter of a component. Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/Component.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/Component.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/Component.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/Component.java Tue May 20 11:51:35 2008 @@ -12,10 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.runtime; +package org.apache.tapestry5.runtime; -import org.apache.tapestry.MarkupWriter; -import org.apache.tapestry.annotation.OnEvent; +import org.apache.tapestry5.MarkupWriter; +import org.apache.tapestry5.annotations.OnEvent; /** * Interface that defines the lifecycle of a component, within a page, allowing for callbacks into the component for @@ -32,7 +32,7 @@ { /** - * Lifecycle method invoked at the end of the {@link org.apache.tapestry.annotation.CleanupRender} render phase. + * Lifecycle method invoked at the end of the {@link org.apache.tapestry5.annotations.CleanupRender} render phase. * There is no annotation for this method, it is part of CleanupRender, but is always invoked. Its specific use is * to allow components to clean up cached parameter values. */ @@ -70,7 +70,7 @@ /** * Generally used to write the close tag matching any open tag written by {@link - * #beginRender(org.apache.tapestry.MarkupWriter, Event)}. + * #beginRender(org.apache.tapestry5.MarkupWriter, Event)}. */ void afterRender(MarkupWriter writer, Event event); Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/ComponentEvent.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/ComponentEvent.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/ComponentEvent.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/ComponentEvent.java Tue May 20 11:51:35 2008 @@ -12,17 +12,17 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.runtime; +package org.apache.tapestry5.runtime; -import org.apache.tapestry.ComponentResourcesCommon; -import org.apache.tapestry.EventContext; +import org.apache.tapestry5.ComponentResourcesCommon; +import org.apache.tapestry5.EventContext; /** * An event that may originate in application logic, or as a result of a client interaction (a GET or POST from the * client). * - * @see ComponentResourcesCommon#triggerEvent(String, Object[], org.apache.tapestry.ComponentEventCallback) - * @see org.apache.tapestry.ComponentEventCallback + * @see ComponentResourcesCommon#triggerEvent(String, Object[], org.apache.tapestry5.ComponentEventCallback) + * @see org.apache.tapestry5.ComponentEventCallback */ public interface ComponentEvent extends Event { @@ -47,7 +47,7 @@ Object coerceContext(int index, String desiredTypeName); /** - * Returns the underlying {@link org.apache.tapestry.EventContext} as a (possibly empty) array. + * Returns the underlying {@link org.apache.tapestry5.EventContext} as a (possibly empty) array. */ Object[] getContext(); @@ -55,4 +55,4 @@ * Returns the underlying event context. */ EventContext getEventContext(); -} \ No newline at end of file +} Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/ComponentEventException.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/ComponentEventException.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/ComponentEventException.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/ComponentEventException.java Tue May 20 11:51:35 2008 @@ -12,16 +12,16 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.runtime; +package org.apache.tapestry5.runtime; -import org.apache.tapestry.EventContext; -import org.apache.tapestry.ioc.internal.util.TapestryException; +import org.apache.tapestry5.EventContext; +import org.apache.tapestry5.ioc.internal.util.TapestryException; /** * A wrapper exception around any exception thrown when invoking a component event handler. In some cases, the * underlying exception may have been a declared exception, and will be wrapped in a RuntimeException. * - * @see org.apache.tapestry.ioc.util.ExceptionUtils#findCause(Throwable, Class) + * @see org.apache.tapestry5.ioc.util.ExceptionUtils#findCause(Throwable, Class) */ public class ComponentEventException extends TapestryException { Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/ComponentResourcesAware.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/ComponentResourcesAware.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/ComponentResourcesAware.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/ComponentResourcesAware.java Tue May 20 11:51:35 2008 @@ -12,9 +12,9 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.runtime; +package org.apache.tapestry5.runtime; -import org.apache.tapestry.ComponentResources; +import org.apache.tapestry5.ComponentResources; /** * Interface implemented by components (after they have been transformed at load time). Component classes should not Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/Event.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/Event.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/Event.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/Event.java Tue May 20 11:51:35 2008 @@ -12,14 +12,14 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.runtime; +package org.apache.tapestry5.runtime; /** * The core methods related to event handling. Events used in this way exist to gather data from user code, by invoking * user methods and capturing the response. Return values from methods, if non-null, are passed to a {@link - * org.apache.tapestry.ComponentEventCallback}. The {@link ComponentEvent} subinterface extends this by providing access - * to a context, or set of information related to the event, along with additional data used, at runtime, to match - * events to user code methods. + * org.apache.tapestry5.ComponentEventCallback}. The {@link ComponentEvent} subinterface extends this by providing + * access to a context, or set of information related to the event, along with additional data used, at runtime, to + * match events to user code methods. */ public interface Event { @@ -41,7 +41,7 @@ /** * Stores a result for the event. Storing a non-null result value may abort the event (at the discretion of the - * {@link org.apache.tapestry.ComponentEventCallback}). + * {@link org.apache.tapestry5.ComponentEventCallback}). * * @param result the result obtained from a method invocations * @return true if the event is now aborted Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/PageLifecycleListener.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/PageLifecycleListener.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/PageLifecycleListener.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/PageLifecycleListener.java Tue May 20 11:51:35 2008 @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.runtime; +package org.apache.tapestry5.runtime; /** * A set of methods that allow components to know about page-level operations. Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/RenderCommand.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/RenderCommand.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/RenderCommand.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/RenderCommand.java Tue May 20 11:51:35 2008 @@ -12,9 +12,9 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.runtime; +package org.apache.tapestry5.runtime; -import org.apache.tapestry.MarkupWriter; +import org.apache.tapestry5.MarkupWriter; /** * A command used during rendering of a page. Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/RenderQueue.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/RenderQueue.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/RenderQueue.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/runtime/RenderQueue.java Tue May 20 11:51:35 2008 @@ -12,9 +12,9 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.runtime; +package org.apache.tapestry5.runtime; -import org.apache.tapestry.ComponentResources; +import org.apache.tapestry5.ComponentResources; /** * A stateful object that manages the process of rendering a page. Rending a page in Tapestry is based on a command Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/Ajax.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/Ajax.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/Ajax.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/Ajax.java Tue May 20 11:51:35 2008 @@ -12,14 +12,14 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.services; +package org.apache.tapestry5.services; import java.lang.annotation.*; /** * Marker annotation for services related to processing an Ajax request (rather than a {@linkplain - * org.apache.tapestry.services.Traditional traditional request}). + * org.apache.tapestry5.services.Traditional traditional request}). * * @see ComponentEventRequestHandler */ Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/Alias.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/Alias.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/Alias.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/Alias.java Tue May 20 11:51:35 2008 @@ -12,18 +12,18 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.services; +package org.apache.tapestry5.services; -import org.apache.tapestry.ioc.ObjectProvider; +import org.apache.tapestry5.ioc.ObjectProvider; /** * The Alias service provides an ObjectProvider that fits into the MasterObjectProvider command chain and disambiguates - * injections based on type. {@linkplain org.apache.tapestry.services.AliasContribution Contibutions} to the Alias + * injections based on type. {@linkplain org.apache.tapestry5.services.AliasContribution Contibutions} to the Alias * service identify the desired service to inject for a particular service interface; this is only necessary when there * is more than one service implementing the same interface. *

* The {@linkplain AliasManager AliasOverrides} service also takes an unordered configuration of {@link - * org.apache.tapestry.services.AliasContribution}; such contributions override the "factory" contributions to the Alias + * org.apache.tapestry5.services.AliasContribution}; such contributions override the "factory" contributions to the Alias * service itself. This is often used to replace built-in service implementations with ones that are specific to a * particular application. */ Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/AliasContribution.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/AliasContribution.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/AliasContribution.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/AliasContribution.java Tue May 20 11:51:35 2008 @@ -12,10 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.services; +package org.apache.tapestry5.services; -import static org.apache.tapestry.ioc.internal.util.Defense.notNull; -import org.apache.tapestry.ioc.internal.util.InternalUtils; +import static org.apache.tapestry5.ioc.internal.util.Defense.notNull; +import org.apache.tapestry5.ioc.internal.util.InternalUtils; import java.util.Formatter; Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/AliasManager.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/AliasManager.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/AliasManager.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/AliasManager.java Tue May 20 11:51:35 2008 @@ -12,12 +12,12 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.services; +package org.apache.tapestry5.services; import java.util.Map; /** - * A thin wrapper around a set of {@link org.apache.tapestry.services.AliasContribution}s. + * A thin wrapper around a set of {@link org.apache.tapestry5.services.AliasContribution}s. */ public interface AliasManager { Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationGlobals.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationGlobals.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationGlobals.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationGlobals.java Tue May 20 11:51:35 2008 @@ -14,7 +14,7 @@ package org.apache.tapestry5.services; -import org.apache.tapestry.services.Context; +import org.apache.tapestry5.services.Context; import javax.servlet.ServletContext; Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationInitializer.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationInitializer.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationInitializer.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationInitializer.java Tue May 20 11:51:35 2008 @@ -14,7 +14,7 @@ package org.apache.tapestry5.services; -import org.apache.tapestry.services.Context; +import org.apache.tapestry5.services.Context; /** * Service interface for initializing Tapestry for the application. Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationInitializerFilter.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationInitializerFilter.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationInitializerFilter.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationInitializerFilter.java Tue May 20 11:51:35 2008 @@ -14,7 +14,7 @@ package org.apache.tapestry5.services; -import org.apache.tapestry.services.Context; +import org.apache.tapestry5.services.Context; /** * Filter interface for {@link ApplicationInitializer}. Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationStateContribution.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationStateContribution.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationStateContribution.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationStateContribution.java Tue May 20 11:51:35 2008 @@ -12,9 +12,9 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.services; +package org.apache.tapestry5.services; -import org.apache.tapestry.ioc.internal.util.Defense; +import org.apache.tapestry5.ioc.internal.util.Defense; /** * A contribution to the configuration of the {@link ApplicationStateManager}, identifying the strategy and creator for Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationStateCreator.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationStateCreator.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationStateCreator.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationStateCreator.java Tue May 20 11:51:35 2008 @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.services; +package org.apache.tapestry5.services; /** * Used by {@link ApplicationStateManager} and {@link ApplicationStatePersistenceStrategy} to create an application Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationStateManager.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationStateManager.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationStateManager.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationStateManager.java Tue May 20 11:51:35 2008 @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.services; +package org.apache.tapestry5.services; /** * Responsible for managing application state objects, objects which persist between requests, but are not tied Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationStatePersistenceStrategy.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationStatePersistenceStrategy.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationStatePersistenceStrategy.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationStatePersistenceStrategy.java Tue May 20 11:51:35 2008 @@ -12,13 +12,13 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.services; +package org.apache.tapestry5.services; /** * Used by {@link ApplicationStateManager} to manage a specific kind of ASO persistence. The stategy is responsible for * managing ASO instances within its domain. * - * @see org.apache.tapestry.services.ApplicationStatePersistenceStrategySource + * @see org.apache.tapestry5.services.ApplicationStatePersistenceStrategySource */ public interface ApplicationStatePersistenceStrategy { Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationStatePersistenceStrategySource.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationStatePersistenceStrategySource.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationStatePersistenceStrategySource.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ApplicationStatePersistenceStrategySource.java Tue May 20 11:51:35 2008 @@ -12,12 +12,12 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.services; +package org.apache.tapestry5.services; /** * Used to provide access to stategies via a logical name for the stategy, such as "session". * - * @see org.apache.tapestry.services.TapestryModule#contributeApplicationStatePersistenceStrategySource(org.apache.tapestry.ioc.MappedConfiguration, + * @see org.apache.tapestry5.services.TapestryModule#contributeApplicationStatePersistenceStrategySource(org.apache.tapestry5.ioc.MappedConfiguration, * Request) */ public interface ApplicationStatePersistenceStrategySource Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/AssetFactory.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/AssetFactory.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/AssetFactory.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/AssetFactory.java Tue May 20 11:51:35 2008 @@ -12,15 +12,15 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.services; +package org.apache.tapestry5.services; -import org.apache.tapestry.Asset; -import org.apache.tapestry.ioc.Resource; +import org.apache.tapestry5.Asset; +import org.apache.tapestry5.ioc.Resource; /** * Used by {@link AssetSource} to create new {@link Asset}s as needed. * - * @see org.apache.tapestry.services.AssetSource + * @see org.apache.tapestry5.services.AssetSource */ public interface AssetFactory { Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/AssetSource.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/AssetSource.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/AssetSource.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/AssetSource.java Tue May 20 11:51:35 2008 @@ -12,11 +12,11 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.services; +package org.apache.tapestry5.services; -import org.apache.tapestry.Asset; -import org.apache.tapestry.ioc.Resource; -import org.apache.tapestry.ioc.services.ThreadLocale; +import org.apache.tapestry5.Asset; +import org.apache.tapestry5.ioc.Resource; +import org.apache.tapestry5.ioc.services.ThreadLocale; import java.util.Locale; @@ -27,7 +27,7 @@ * (for files inside the web application context) and "classpath:" for files stored on the classpath (typically, inside * a JAR, such as a component library). * - * @see org.apache.tapestry.services.TapestryModule#contributeAssetSource(org.apache.tapestry.ioc.MappedConfiguration, + * @see org.apache.tapestry5.services.TapestryModule#contributeAssetSource(org.apache.tapestry5.ioc.MappedConfiguration, * AssetFactory, AssetFactory) */ public interface AssetSource @@ -64,4 +64,4 @@ * @return the asset */ Asset getClasspathAsset(String path); -} \ No newline at end of file +} Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BaseURLSource.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BaseURLSource.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BaseURLSource.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BaseURLSource.java Tue May 20 11:51:35 2008 @@ -12,16 +12,16 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.services; +package org.apache.tapestry5.services; /** * Used when switching between normal/insecure (HTTP) and secure (HTTPS) mode. When a switch occurs, it is no longer * possible to use relative URLs, instead absolute URLs must be generated. The default implementation of this is - * simple-minded: it just tacks the correct scheme in front of {@link org.apache.tapestry.services.Request#getServerName()}. + * simple-minded: it just tacks the correct scheme in front of {@link org.apache.tapestry5.services.Request#getServerName()}. * In production, behind a firewall, it is often necessary to do a bit more, since getServerName() will * often be the name of the internal server (not visible to the client web browser), and a hard-coded name of a server * that is visible to the web browser is needed. Further, in testing, non-default ports are often used. In - * those cases, an overriding contribution to the {@link org.apache.tapestry.services.Alias} service will allow a custom + * those cases, an overriding contribution to the {@link org.apache.tapestry5.services.Alias} service will allow a custom * implementation to supercede the default version. */ public interface BaseURLSource Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BeanBlockContribution.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BeanBlockContribution.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BeanBlockContribution.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BeanBlockContribution.java Tue May 20 11:51:35 2008 @@ -12,10 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.services; +package org.apache.tapestry5.services; -import org.apache.tapestry.corelib.components.Label; -import static org.apache.tapestry.ioc.internal.util.Defense.notBlank; +import org.apache.tapestry5.corelib.components.Label; +import static org.apache.tapestry5.ioc.internal.util.Defense.notBlank; /** * A contribution to the {@link BeanBlockSource} service, defining a page name and block id (within the page) that can Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BeanBlockOverrideSource.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BeanBlockOverrideSource.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BeanBlockOverrideSource.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BeanBlockOverrideSource.java Tue May 20 11:51:35 2008 @@ -12,13 +12,13 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.services; +package org.apache.tapestry5.services; -import org.apache.tapestry.Block; +import org.apache.tapestry5.Block; /** - * Used to override the default {@link org.apache.tapestry.services.BeanBlockSource} for a particular data type. The - * service accepts the same configuration of {@link org.apache.tapestry.services.BeanBlockContribution}s as the main + * Used to override the default {@link org.apache.tapestry5.services.BeanBlockSource} for a particular data type. The + * service accepts the same configuration of {@link org.apache.tapestry5.services.BeanBlockContribution}s as the main * service. */ public interface BeanBlockOverrideSource Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BeanBlockSource.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BeanBlockSource.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BeanBlockSource.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BeanBlockSource.java Tue May 20 11:51:35 2008 @@ -12,24 +12,24 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.services; +package org.apache.tapestry5.services; -import org.apache.tapestry.Block; +import org.apache.tapestry5.Block; /** * A source of {@link Block}s used to display the properties of a bean (used by the {@link - * org.apache.tapestry.corelib.components.Grid} component), or to edit the properties of a bean (used by the {@link - * org.apache.tapestry.corelib.components.BeanEditForm} component). Contributions to this service (a configuration of + * org.apache.tapestry5.corelib.components.Grid} component), or to edit the properties of a bean (used by the {@link + * org.apache.tapestry5.corelib.components.BeanEditForm} component). Contributions to this service (a configuration of * {@link BeanBlockContribution}s) define what properties may be editted. *

* Blocks are accessed in terms of a data type a string that identifies the type of data to be editted, * such as "string", "date", "boolean", etc. *

* Tapestry contributes a number of default data types and corresponding edit and display blocks. The {@link - * org.apache.tapestry.services.BeanBlockOverrideSource} service allows these to be overridden. + * org.apache.tapestry5.services.BeanBlockOverrideSource} service allows these to be overridden. * - * @see org.apache.tapestry.services.DataTypeAnalyzer - * @see org.apache.tapestry.services.TapestryModule#contributeBeanBlockSource(org.apache.tapestry.ioc.Configuration) + * @see org.apache.tapestry5.services.DataTypeAnalyzer + * @see org.apache.tapestry5.services.TapestryModule#contributeBeanBlockSource(org.apache.tapestry5.ioc.Configuration) */ public interface BeanBlockSource { Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BeanModelSource.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BeanModelSource.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BeanModelSource.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BeanModelSource.java Tue May 20 11:51:35 2008 @@ -12,20 +12,20 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.services; +package org.apache.tapestry5.services; -import org.apache.tapestry.ComponentResources; -import org.apache.tapestry.beaneditor.BeanModel; -import org.apache.tapestry.beaneditor.OrderBefore; +import org.apache.tapestry5.ComponentResources; +import org.apache.tapestry5.beaneditor.BeanModel; +import org.apache.tapestry5.beaneditor.OrderBefore; /** * Used by a component to create a default {@link BeanModel} for a particular bean class. Also provides support to the * model by generating validation information for individual fields. *

- * BeanModels are the basis for the {@link org.apache.tapestry.corelib.components.BeanEditor} and {@link - * org.apache.tapestry.corelib.components.Grid} comopnents. + * BeanModels are the basis for the {@link org.apache.tapestry5.corelib.components.BeanEditor} and {@link + * org.apache.tapestry5.corelib.components.Grid} comopnents. * - * @see org.apache.tapestry.services.PropertyConduitSource + * @see org.apache.tapestry5.services.PropertyConduitSource */ public interface BeanModelSource { @@ -39,10 +39,10 @@ * * @param beanClass class of object to be edited * @param filterReadOnlyProperties if true, then properties that are read-only will be skipped (leaving only - * read-write properties, appropriate for {@link org.apache.tapestry.corelib.components.BeanEditForm}, + * read-write properties, appropriate for {@link org.apache.tapestry5.corelib.components.BeanEditForm}, * etc.). If false, then both read-only and read-write properties will be included - * (appropriate for {@link org.apache.tapestry.corelib.components.Grid} or {@link - * org.apache.tapestry.corelib.components.BeanDisplay}). + * (appropriate for {@link org.apache.tapestry5.corelib.components.Grid} or {@link + * org.apache.tapestry5.corelib.components.BeanDisplay}). * @param resources used when resolving resources, especially component messages (used to access * labels) * @return a model Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BindingFactory.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BindingFactory.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BindingFactory.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BindingFactory.java Tue May 20 11:51:35 2008 @@ -12,15 +12,15 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.services; +package org.apache.tapestry5.services; -import org.apache.tapestry.Binding; -import org.apache.tapestry.ComponentResources; -import org.apache.tapestry.ioc.Location; +import org.apache.tapestry5.Binding; +import org.apache.tapestry5.ComponentResources; +import org.apache.tapestry5.ioc.Location; /** * Creates a binding of a particular type. This is usually invoked from the {@link - * org.apache.tapestry.services.BindingSource} service. + * org.apache.tapestry5.services.BindingSource} service. */ public interface BindingFactory { Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BindingSource.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BindingSource.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BindingSource.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/BindingSource.java Tue May 20 11:51:35 2008 @@ -12,18 +12,18 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.services; +package org.apache.tapestry5.services; -import org.apache.tapestry.Binding; -import org.apache.tapestry.ComponentResources; -import org.apache.tapestry.ioc.Location; +import org.apache.tapestry5.Binding; +import org.apache.tapestry5.ComponentResources; +import org.apache.tapestry5.ioc.Location; /** * Used to acquire bindings for component parameters. The BindingSource service strips off the binding prefix to locate - * a {@link org.apache.tapestry.services.BindingFactory}. + * a {@link org.apache.tapestry5.services.BindingFactory}. * - * @see org.apache.tapestry.services.TapestryModule#contributeBindingSource(org.apache.tapestry.ioc.MappedConfiguration, - * AssetSource, BindingFactory, FieldValidatorSource, TranslatorSource, org.apache.tapestry.ioc.ObjectLocator) + * @see org.apache.tapestry5.services.TapestryModule#contributeBindingSource(org.apache.tapestry5.ioc.MappedConfiguration, + * AssetSource, BindingFactory, FieldValidatorSource, TranslatorSource, org.apache.tapestry5.ioc.ObjectLocator) */ public interface BindingSource { Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ClassTransformation.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ClassTransformation.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ClassTransformation.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ClassTransformation.java Tue May 20 11:51:35 2008 @@ -12,10 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.services; +package org.apache.tapestry5.services; import javassist.CtBehavior; -import org.apache.tapestry.ioc.AnnotationProvider; +import org.apache.tapestry5.ioc.AnnotationProvider; import org.slf4j.Logger; import java.lang.annotation.Annotation; @@ -24,7 +24,7 @@ /** * Contains class-specific information used when transforming a raw component class into an executable component class. * An executable class is one that has been transformed to work within Tapestry. This includes adding interfaces - * ({@link org.apache.tapestry.runtime.Component}) but also transforming access to fields, based on annotations and + * ({@link org.apache.tapestry5.runtime.Component}) but also transforming access to fields, based on annotations and * naming conventions. Most of the changes are provided by different implementations of {@link * ComponentClassTransformWorker}. *

@@ -44,9 +44,9 @@ * The majority of methods concern the declared members (field and methods) of a specific class, rather than * any fields or methods inherited from a base class. * - * @see org.apache.tapestry.services.TapestryModule#contributeComponentClassTransformWorker(org.apache.tapestry.ioc.OrderedConfiguration, - * org.apache.tapestry.ioc.ObjectLocator, InjectionProvider, Environment, ComponentClassResolver, - * org.apache.tapestry.internal.services.RequestPageCache, BindingSource) + * @see org.apache.tapestry5.services.TapestryModule#contributeComponentClassTransformWorker(org.apache.tapestry5.ioc.OrderedConfiguration, + * org.apache.tapestry5.ioc.ObjectLocator, InjectionProvider, Environment, ComponentClassResolver, + * org.apache.tapestry5.internal.services.RequestPageCache, BindingSource) */ public interface ClassTransformation extends AnnotationProvider { @@ -237,7 +237,7 @@ * * @param methodSignature the signature of the method to extend * @param methodBody the body of code - * @throws org.apache.tapestry.internal.services.MethodCompileException + * @throws org.apache.tapestry5.internal.services.MethodCompileException * if the provided Javassist method body can not be compiled * @see #extendExistingMethod(TransformMethodSignature, String) */ @@ -249,7 +249,7 @@ * * @param methodSignature signature of the method to extend * @param methodBody the body of code - * @throws org.apache.tapestry.internal.services.MethodCompileException + * @throws org.apache.tapestry5.internal.services.MethodCompileException * if the provided method body can not be compiled * @see #prefixMethod(TransformMethodSignature, String) */ @@ -268,13 +268,13 @@ * * @param methodSignature * @param methodBody - * @throws org.apache.tapestry.internal.services.MethodCompileException + * @throws org.apache.tapestry5.internal.services.MethodCompileException * if the provided method body can not be compiled */ void prefixMethod(TransformMethodSignature methodSignature, String methodBody); /** - * Returns the name of a field that provides the {@link org.apache.tapestry.ComponentResources} for the transformed + * Returns the name of a field that provides the {@link org.apache.tapestry5.ComponentResources} for the transformed * component. This will be a protected field, accessible to the class and subclasses. * * @return name of field Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ClasspathAssetAliasManager.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ClasspathAssetAliasManager.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ClasspathAssetAliasManager.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ClasspathAssetAliasManager.java Tue May 20 11:51:35 2008 @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.services; +package org.apache.tapestry5.services; public interface ClasspathAssetAliasManager { Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ClasspathProvider.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ClasspathProvider.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ClasspathProvider.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ClasspathProvider.java Tue May 20 11:51:35 2008 @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.services; +package org.apache.tapestry5.services; import java.lang.annotation.Documented; import static java.lang.annotation.ElementType.FIELD; Modified: tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ComponentClassResolver.java URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ComponentClassResolver.java?rev=658390&r1=658389&r2=658390&view=diff ============================================================================== --- tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ComponentClassResolver.java (original) +++ tapestry/tapestry5/branches/hlship-20080520/tapestry-core/src/main/java/org/apache/tapestry5/services/ComponentClassResolver.java Tue May 20 11:51:35 2008 @@ -12,9 +12,9 @@ // See the License for the specific language governing permissions and // limitations under the License. -package org.apache.tapestry.services; +package org.apache.tapestry5.services; -import org.apache.tapestry.ioc.services.ClassNameLocator; +import org.apache.tapestry5.ioc.services.ClassNameLocator; /** * Resolves page names and component types to fully qualified class names. Pages and components may be provided by the @@ -22,7 +22,7 @@ * appear in component template (when specifying the type of an embedded component). *

* The service is configured using a collection of {@link LibraryMapping}s. Each mapping maps a prefix, such as "core" - * to a root package name, such as "org.apache.tapestry.corelib". The root package is expected to have sub-packages: + * to a root package name, such as "org.apache.tapestry5.corelib". The root package is expected to have sub-packages: * "pages", "components", "mixins" and "base" ("base" is for base classes). *

* The resolver performs a search of the classpath (via {@link ClassNameLocator}), to build up a set of case-insensitive