Author: jholmes Date: Wed Aug 1 22:28:56 2007 New Revision: 562019 URL: http://svn.apache.org/viewvc?view=rev&rev=562019 Log: Fix typos.
Modified: struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/components/Component.java Modified: struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/components/Component.java URL: http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/components/Component.java?view=diff&rev=562019&r1=562018&r2=562019 ============================================================================== --- struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/components/Component.java (original) +++ struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/components/Component.java Wed Aug 1 22:28:56 2007 @@ -70,7 +70,7 @@ } /** - * Get's the name of this component. + * Gets the name of this component. * @return the name of this component. */ private String getComponentName() { @@ -87,7 +87,7 @@ } /** - * Get's the OGNL value stack assoicated with this component. + * Gets the OGNL value stack assoicated with this component. * @return the OGNL value stack assoicated with this component. */ public ValueStack getStack() { @@ -95,7 +95,7 @@ } /** - * Get's the component stack of this component. + * Gets the component stack of this component. * @return the component stack of this component, never <tt>null</tt>. */ public Stack getComponentStack() { @@ -215,7 +215,7 @@ } /** - * Constructs?a <code>RuntimeException</code> based on the given information. + * Constructs a <code>RuntimeException</code> based on the given information. * <p/> * A message is constructed and logged at ERROR level before being returned * as a <code>RuntimeException</code>. @@ -408,7 +408,7 @@ } /** - * Get's the parameters. + * Gets the parameters. * @return the parameters. Is never <tt>null</tt>. */ public Map getParameters() { @@ -416,7 +416,7 @@ } /** - * Add's all the given parameters to this componenets own parameters. + * Adds all the given parameters to this component's own parameters. * @param params the parameters to add. */ public void addAllParameters(Map params) { @@ -424,7 +424,7 @@ } /** - * Add's the given key and value to this components own parameter. + * Adds the given key and value to this component's own parameter. * <p/> * If the provided key is <tt>null</tt> nothing happens. * If the provided value is <tt>null</tt> any existing parameter with @@ -445,7 +445,7 @@ } /** - * Get's the id for referencing element. + * Gets the id for referencing element. * @return the id for referencing element. */ public String getId() { @@ -466,5 +466,4 @@ public boolean usesBody() { return false; } - }