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 2013/06/13 10:05:17 UTC

[2/2] git commit: WICKET-5232 ComponentRenderer.renderComponent could accept components with any markupId, not just "compId"

WICKET-5232 ComponentRenderer.renderComponent could accept components with any markupId, not just "compId"

Keep the old field as deprecated in 6.x


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

Branch: refs/heads/wicket-6.x
Commit: eb49978f75457dedd506d3515b1004e06e49b565
Parents: 7c8320f
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Thu Jun 13 11:04:39 2013 +0300
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Thu Jun 13 11:04:39 2013 +0300

----------------------------------------------------------------------
 .../org/apache/wicket/core/util/string/ComponentRenderer.java  | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/eb49978f/wicket-core/src/main/java/org/apache/wicket/core/util/string/ComponentRenderer.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/core/util/string/ComponentRenderer.java b/wicket-core/src/main/java/org/apache/wicket/core/util/string/ComponentRenderer.java
index 5cea4b0..e56622e 100644
--- a/wicket-core/src/main/java/org/apache/wicket/core/util/string/ComponentRenderer.java
+++ b/wicket-core/src/main/java/org/apache/wicket/core/util/string/ComponentRenderer.java
@@ -36,6 +36,12 @@ import org.apache.wicket.util.resource.StringResourceStream;
  */
 public class ComponentRenderer
 {
+	/**
+	 * The id to use when rendering a component
+	 * @deprecated Unused since WICKET-5232
+	 */
+	@Deprecated
+	public static final String COMP_ID = "compId";
 	
 	/**
 	 * Collects the html generated by the rendering of a page.