Updated Branches:
  refs/heads/master 60d3009e9 -> aa84e95ab

Methods in interface are public implicitly


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/ce702dcb
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/ce702dcb
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/ce702dcb

Branch: refs/heads/master
Commit: ce702dcb248752ada954c51a66868a4795c468cf
Parents: 5de39f4
Author: Martin Tzvetanov Grigorov <mgrigo...@apache.org>
Authored: Mon Jan 13 15:29:56 2014 +0200
Committer: Martin Tzvetanov Grigorov <mgrigo...@apache.org>
Committed: Mon Jan 13 15:29:56 2014 +0200

----------------------------------------------------------------------
 .../request/component/IRequestableComponent.java      | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/ce702dcb/wicket-core/src/main/java/org/apache/wicket/request/component/IRequestableComponent.java
----------------------------------------------------------------------
diff --git 
a/wicket-core/src/main/java/org/apache/wicket/request/component/IRequestableComponent.java
 
b/wicket-core/src/main/java/org/apache/wicket/request/component/IRequestableComponent.java
index 2566dcc..adc0c9f 100644
--- 
a/wicket-core/src/main/java/org/apache/wicket/request/component/IRequestableComponent.java
+++ 
b/wicket-core/src/main/java/org/apache/wicket/request/component/IRequestableComponent.java
@@ -34,21 +34,21 @@ public interface IRequestableComponent
         * 
         * @return Colon separated path to this component in the component 
hierarchy
         */
-       public String getPageRelativePath();
+       String getPageRelativePath();
 
        /**
         * Gets the id of this component.
         * 
         * @return The id of this component
         */
-       public String getId();
+       String getId();
 
        /**
         * Returns page this component belongs to.
         * 
         * @return page instance or <code>null</code>
         */
-       public IRequestablePage getPage();
+       IRequestablePage getPage();
 
        /**
         * Gets the component at the given path.
@@ -57,7 +57,7 @@ public interface IRequestableComponent
         *            Path to component
         * @return The component at the path
         */
-       public IRequestableComponent get(String path);
+       IRequestableComponent get(String path);
 
        /**
         * Gets a stable id for the specified behavior. The id remains stable 
from the point this method
@@ -66,7 +66,7 @@ public interface IRequestableComponent
         * @param behavior
         * @return a stable id for the specified behavior
         */
-       public int getBehaviorId(Behavior behavior);
+       int getBehaviorId(Behavior behavior);
 
        /**
         * Gets the behavior for the specified id
@@ -76,7 +76,7 @@ public interface IRequestableComponent
         * @throws InvalidBehaviorIdException
         *             when behavior with this id cannot be found
         */
-       public Behavior getBehaviorById(int id);
+       Behavior getBehaviorById(int id);
 
        /**
         * Detaches the component.
@@ -104,5 +104,5 @@ public interface IRequestableComponent
         * 
         * </p>
         */
-       public void detach();
+       void detach();
 }

Reply via email to