You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2014/01/16 11:53:07 UTC

[02/10] git commit: Methods in interface are public implicitly

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/9969c9ed
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/9969c9ed
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/9969c9ed

Branch: refs/heads/sandbox/preserve-page-parameters-and-execute-listener-interface-after-expiration
Commit: 9969c9ed1219e86787f9bfa2218e6ea23bcdc434
Parents: c1c1f79
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Mon Jan 13 15:29:56 2014 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Tue Jan 14 23:14:24 2014 +0200

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


http://git-wip-us.apache.org/repos/asf/wicket/blob/9969c9ed/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();
 }