You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by dr...@apache.org on 2011/06/23 12:23:02 UTC

svn commit: r1138814 - /tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/ComponentClassResolver.java

Author: drobiazko
Date: Thu Jun 23 10:23:02 2011
New Revision: 1138814

URL: http://svn.apache.org/viewvc?rev=1138814&view=rev
Log:
TAP5-1500: Update ComponentClassResolve's JavaDocs

Modified:
    tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/ComponentClassResolver.java

Modified: tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/ComponentClassResolver.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/ComponentClassResolver.java?rev=1138814&r1=1138813&r2=1138814&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/ComponentClassResolver.java (original)
+++ tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/ComponentClassResolver.java Thu Jun 23 10:23:02 2011
@@ -47,7 +47,7 @@ public interface ComponentClassResolver
      * @param pageName
      *            page name
      * @return fully qualified class name for the page
-     * @throws IllegalArgumentException
+     * @throws org.apache.tapestry5.ioc.util.UnknownValueException
      *             if the name does not match a known page class
      */
     String resolvePageNameToClassName(String pageName);
@@ -82,7 +82,7 @@ public interface ComponentClassResolver
      * Returns the canonical form of a page name. The canonical form uses character case matching the underlying class
      * name.
      * 
-     * @throws IllegalArgumentException
+     * @throws org.apache.tapestry5.ioc.util.UnknownValueException
      *             if the page name does not match a logical page name
      */
     String canonicalizePageName(String pageName);
@@ -94,7 +94,7 @@ public interface ComponentClassResolver
      * @param componentType
      *            a logical component type
      * @return fully qualified class name
-     * @throws IllegalArgumentException
+     * @throws org.apache.tapestry5.ioc.util.UnknownValueException
      *             if the component type can not be resolved
      */
     String resolveComponentTypeToClassName(String componentType);
@@ -106,7 +106,7 @@ public interface ComponentClassResolver
      * @param mixinType
      *            a logical mixin type
      * @return fully qualified class name
-     * @throws IllegalArgumentException
+     * @throws org.apache.tapestry5.ioc.util.UnknownValueException
      *             if the mixin type can not be resolved
      */
     String resolveMixinTypeToClassName(String mixinType);