Author: dolander
Date: Tue Jan 18 11:53:45 2005
New Revision: 125541
URL: http://svn.apache.org/viewcvs?view=rev&rev=125541
Log:
Rename the NameInterceptor to INameInterceptor.
Added:
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/INameInterceptor.java
- copied, changed from r125524,
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/NameInterceptor.java
Removed:
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/NameInterceptor.java
Modified:
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/AbstractClassicTag.java
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/DataSourceTag.java
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/CheckBox.java
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/CheckBoxGroup.java
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/HtmlBaseTag.java
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/HtmlDataSourceTag.java
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/HtmlGroupBaseTag.java
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/RadioButtonGroup.java
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Select.java
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/FormDataNameInterceptor.java
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/IndexedNameInterceptor.java
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/PrefixNameInterceptor.java
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/tree/Tree.java
Modified:
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/AbstractClassicTag.java
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/AbstractClassicTag.java?view=diff&rev=125541&p1=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/AbstractClassicTag.java&r1=125540&p2=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/AbstractClassicTag.java&r2=125541
==============================================================================
---
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/AbstractClassicTag.java
(original)
+++
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/AbstractClassicTag.java
Tue Jan 18 11:53:45 2005
@@ -22,7 +22,7 @@
import org.apache.beehive.netui.tags.html.ScriptContainer;
import org.apache.beehive.netui.tags.naming.FormDataNameInterceptor;
import org.apache.beehive.netui.tags.naming.IndexedNameInterceptor;
-import org.apache.beehive.netui.tags.naming.NameInterceptor;
+import org.apache.beehive.netui.tags.naming.INameInterceptor;
import org.apache.beehive.netui.util.Bundle;
import org.apache.beehive.netui.util.logging.Logger;
import org.apache.struts.Globals;
@@ -50,7 +50,7 @@
* <li><b>Expression Management</b> -- This set of method provide evaluation
and information about
* expressions. These methods allow tags to fully support expressions for
attributes.</li>
* <li><b>Naming and NamingInterceptor Services</b> -- This set of methods
will apply
- * <code>NameInterceptor</code>s to a name to produce the name written out.
In addition, it allows
+ * <code>INameInterceptor</code>s to a name to produce the name written out.
In addition, it allows
* the URL Rewritter service to modify names.</li>
* <li><b>Attribute Rendering Support</b> -- This set of routine allow tags to
keep simple attributes
* in a map that can be written into the generated markup. There are two
types of attributes, attributes
@@ -85,7 +85,7 @@
* This is a private formRewriter which is used by
<code>qualifyName</code> to provide
* struts naming behavior.
*/
- private static final NameInterceptor formRewriter = new
FormDataNameInterceptor();
+ private static final INameInterceptor formRewriter = new
FormDataNameInterceptor();
/**
* String constant for the empty string.
@@ -172,10 +172,10 @@
/////////////////////////// Naming and NamingInterceptor support
////////////////////////////
/**
- * Return an <code>ArrayList</code> which represents a chain of
<code>NameInterceptor</code>
+ * Return an <code>ArrayList</code> which represents a chain of
<code>INameInterceptor</code>
* objects. This method by default returns <code>null</code> and should
be overridden
* by objects that support naming.
- * @return an <code>ArrayList</code> that will contain
<code>NameInterceptor</code> objects.
+ * @return an <code>ArrayList</code> that will contain
<code>INameInterceptor</code> objects.
*/
protected List getNamingChain()
{
@@ -187,12 +187,12 @@
* After the naming chain processes the name, it will be passed to
<code>rewriteName</code> for final processing.
* If the naming chaing returned from <code>getNamingChain</code> returns
null, the name will be passed to
* <code>rewriteName</code> and returned. If there is an
<code>ExpressionEvaluationException</code> thrown
- * by a <code>NameInterceptor</code>, the error will be registered with
the tag and <code>null</code> will
+ * by a <code>INameInterceptor</code>, the error will be registered with
the tag and <code>null</code> will
* be returned.
* @param name the name to rewrite
- * @return the name after it was passed to all
<code>NameInterceptor</code>s in the naming chain.
+ * @return the name after it was passed to all
<code>INameInterceptor</code>s in the naming chain.
* @see #rewriteName
- * @see org.apache.beehive.netui.tags.naming.NameInterceptor
+ * @see org.apache.beehive.netui.tags.naming.INameInterceptor
*/
protected String applyNamingChain(String name)
throws JspException
@@ -212,9 +212,9 @@
int cnt = namingChain.size();
for (int i = 0; i < cnt; i++) {
//if (logger.isDebugEnabled())
- // logger.debug("rewriteName: \"" + newName + "\" with
NameInterceptor: " + namingChain.get(i).getClass().getName());
+ // logger.debug("rewriteName: \"" + newName + "\" with
INameInterceptor: " + namingChain.get(i).getClass().getName());
- newName = ((NameInterceptor)
namingChain.get(i)).rewriteName(newName, this);
+ newName = ((INameInterceptor)
namingChain.get(i)).rewriteName(newName, this);
//if (logger.isDebugEnabled())
// logger.debug("rewrite result: " + newName);
Modified:
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/DataSourceTag.java
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/DataSourceTag.java?view=diff&rev=125541&p1=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/DataSourceTag.java&r1=125540&p2=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/DataSourceTag.java&r2=125541
==============================================================================
---
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/DataSourceTag.java
(original)
+++
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/DataSourceTag.java
Tue Jan 18 11:53:45 2005
@@ -70,10 +70,10 @@
}
/**
- * Return an <code>ArrayList</code> which represents a chain of
<code>NameInterceptor</code>
+ * Return an <code>ArrayList</code> which represents a chain of
<code>INameInterceptor</code>
* objects. This method by default returns <code>null</code> and should
be overridden
* by objects that support naming.
- * @return an <code>ArrayList</code> that will contain
<code>NameInterceptor</code> objects.
+ * @return an <code>ArrayList</code> that will contain
<code>INameInterceptor</code> objects.
*/
protected List getNamingChain()
{
Modified:
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/CheckBox.java
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/CheckBox.java?view=diff&rev=125541&p1=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/CheckBox.java&r1=125540&p2=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/CheckBox.java&r2=125541
==============================================================================
---
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/CheckBox.java
(original)
+++
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/CheckBox.java
Tue Jan 18 11:53:45 2005
@@ -203,10 +203,10 @@
}
/**
- * Return an <code>ArrayList</code> which represents a chain of
<code>NameInterceptor</code>
+ * Return an <code>ArrayList</code> which represents a chain of
<code>INameInterceptor</code>
* objects. This method by default returns <code>null</code> and should
be overridden
* by objects that support naming.
- * @return an <code>ArrayList</code> that will contain
<code>NameInterceptor</code> objects.
+ * @return an <code>ArrayList</code> that will contain
<code>INameInterceptor</code> objects.
*/
protected List getNamingChain()
{
Modified:
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/CheckBoxGroup.java
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/CheckBoxGroup.java?view=diff&rev=125541&p1=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/CheckBoxGroup.java&r1=125540&p2=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/CheckBoxGroup.java&r2=125541
==============================================================================
---
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/CheckBoxGroup.java
(original)
+++
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/CheckBoxGroup.java
Tue Jan 18 11:53:45 2005
@@ -233,10 +233,10 @@
}
/**
- * Return an <code>ArrayList</code> which represents a chain of
<code>NameInterceptor</code>
+ * Return an <code>ArrayList</code> which represents a chain of
<code>INameInterceptor</code>
* objects. This method by default returns <code>null</code> and should
be overridden
* by objects that support naming.
- * @return an <code>ArrayList</code> that will contain
<code>NameInterceptor</code> objects.
+ * @return an <code>ArrayList</code> that will contain
<code>INameInterceptor</code> objects.
*/
protected List getNamingChain()
{
Modified:
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/HtmlBaseTag.java
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/HtmlBaseTag.java?view=diff&rev=125541&p1=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/HtmlBaseTag.java&r1=125540&p2=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/HtmlBaseTag.java&r2=125541
==============================================================================
---
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/HtmlBaseTag.java
(original)
+++
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/HtmlBaseTag.java
Tue Jan 18 11:53:45 2005
@@ -577,7 +577,6 @@
{
IScriptReporter scriptReporter = getScriptReporter();
if (scriptReporter != null) {
- //System.err.println("tagid:" + tagId + " RealId:" + realId);
scriptReporter.addTagIdMappings(tagId, realId, realName);
return null;
}
Modified:
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/HtmlDataSourceTag.java
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/HtmlDataSourceTag.java?view=diff&rev=125541&p1=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/HtmlDataSourceTag.java&r1=125540&p2=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/HtmlDataSourceTag.java&r2=125541
==============================================================================
---
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/HtmlDataSourceTag.java
(original)
+++
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/HtmlDataSourceTag.java
Tue Jan 18 11:53:45 2005
@@ -81,10 +81,10 @@
}
/**
- * Return an <code>ArrayList</code> which represents a chain of
<code>NameInterceptor</code>
+ * Return an <code>ArrayList</code> which represents a chain of
<code>INameInterceptor</code>
* objects. This method by default returns <code>null</code> and should
be overridden
* by objects that support naming.
- * @return an <code>ArrayList</code> that will contain
<code>NameInterceptor</code> objects.
+ * @return an <code>ArrayList</code> that will contain
<code>INameInterceptor</code> objects.
*/
protected List getNamingChain()
{
Modified:
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/HtmlGroupBaseTag.java
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/HtmlGroupBaseTag.java?view=diff&rev=125541&p1=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/HtmlGroupBaseTag.java&r1=125540&p2=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/HtmlGroupBaseTag.java&r2=125541
==============================================================================
---
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/HtmlGroupBaseTag.java
(original)
+++
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/HtmlGroupBaseTag.java
Tue Jan 18 11:53:45 2005
@@ -377,10 +377,10 @@
}
/**
- * Return an <code>ArrayList</code> which represents a chain of
<code>NameInterceptor</code>
+ * Return an <code>ArrayList</code> which represents a chain of
<code>INameInterceptor</code>
* objects. This method by default returns <code>null</code> and should
be overridden
* by objects that support naming.
- * @return an <code>ArrayList</code> that will contain
<code>NameInterceptor</code> objects.
+ * @return an <code>ArrayList</code> that will contain
<code>INameInterceptor</code> objects.
*/
protected List getNamingChain()
{
Modified:
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/RadioButtonGroup.java
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/RadioButtonGroup.java?view=diff&rev=125541&p1=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/RadioButtonGroup.java&r1=125540&p2=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/RadioButtonGroup.java&r2=125541
==============================================================================
---
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/RadioButtonGroup.java
(original)
+++
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/RadioButtonGroup.java
Tue Jan 18 11:53:45 2005
@@ -207,10 +207,10 @@
}
/**
- * Return an <code>ArrayList</code> which represents a chain of
<code>NameInterceptor</code>
+ * Return an <code>ArrayList</code> which represents a chain of
<code>INameInterceptor</code>
* objects. This method by default returns <code>null</code> and should
be overridden
* by objects that support naming.
- * @return an <code>ArrayList</code> that will contain
<code>NameInterceptor</code> objects.
+ * @return an <code>ArrayList</code> that will contain
<code>INameInterceptor</code> objects.
*/
protected List getNamingChain()
{
Modified:
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Select.java
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Select.java?view=diff&rev=125541&p1=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Select.java&r1=125540&p2=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Select.java&r2=125541
==============================================================================
---
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Select.java
(original)
+++
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Select.java
Tue Jan 18 11:53:45 2005
@@ -343,10 +343,10 @@
}
/**
- * Return an <code>ArrayList</code> which represents a chain of
<code>NameInterceptor</code>
+ * Return an <code>ArrayList</code> which represents a chain of
<code>INameInterceptor</code>
* objects. This method by default returns <code>null</code> and should
be overridden
* by objects that support naming.
- * @return an <code>ArrayList</code> that will contain
<code>NameInterceptor</code> objects.
+ * @return an <code>ArrayList</code> that will contain
<code>INameInterceptor</code> objects.
*/
protected List getNamingChain()
{
Modified:
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/FormDataNameInterceptor.java
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/FormDataNameInterceptor.java?view=diff&rev=125541&p1=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/FormDataNameInterceptor.java&r1=125540&p2=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/FormDataNameInterceptor.java&r2=125541
==============================================================================
---
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/FormDataNameInterceptor.java
(original)
+++
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/FormDataNameInterceptor.java
Tue Jan 18 11:53:45 2005
@@ -25,7 +25,7 @@
import javax.servlet.jsp.tagext.Tag;
/**
- * A [EMAIL PROTECTED] NameInterceptor} that qualifies all non-expression
attributes
+ * A [EMAIL PROTECTED] INameInterceptor} that qualifies all non-expression
attributes
* that are expected to be expressions into valid
* expressions. This conversion is for Struts compatability;
* In Struts, the "property" property is used to specify which
@@ -40,7 +40,7 @@
* if the attribute was not an expression.
*/
public class FormDataNameInterceptor
- implements NameInterceptor
+ implements INameInterceptor
{
private static final Logger logger =
Logger.getInstance(FormDataNameInterceptor.class);
Copied:
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/INameInterceptor.java
(from r125524,
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/NameInterceptor.java)
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/INameInterceptor.java?view=diff&rev=125541&p1=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/NameInterceptor.java&r1=125524&p2=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/INameInterceptor.java&r2=125541
==============================================================================
---
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/NameInterceptor.java
(original)
+++
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/INameInterceptor.java
Tue Jan 18 11:53:45 2005
@@ -33,7 +33,7 @@
* @see IndexedNameInterceptor
* @see PrefixNameInterceptor
*/
-public interface NameInterceptor
+public interface INameInterceptor
{
/**
Modified:
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/IndexedNameInterceptor.java
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/IndexedNameInterceptor.java?view=diff&rev=125541&p1=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/IndexedNameInterceptor.java&r1=125540&p2=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/IndexedNameInterceptor.java&r2=125541
==============================================================================
---
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/IndexedNameInterceptor.java
(original)
+++
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/IndexedNameInterceptor.java
Tue Jan 18 11:53:45 2005
@@ -33,18 +33,18 @@
// external imports
/**
- * A [EMAIL PROTECTED] NameInterceptor} that is used to rewrite names which
+ * A [EMAIL PROTECTED] INameInterceptor} that is used to rewrite names which
* reference the <code>container</code> databinding context. This
- * NameInterceptor is for use by tags that render form-updatable HTML
+ * INameInterceptor is for use by tags that render form-updatable HTML
* elements. If the dataSource attribute of the tag references a
* <code>container</code> binding context, the name must be qualified
* into a real path down a bean / property hierarchy in order to
- * correctly update that value on a POST. This NameInterceptor
+ * correctly update that value on a POST. This INameInterceptor
* rewrites that name using the given name and the hierarchy of
* [EMAIL PROTECTED]
org.apache.beehive.netui.script.common.IDataAccessProvider} tags in a JSP page.
*/
public class IndexedNameInterceptor
- implements NameInterceptor
+ implements INameInterceptor
{
private static final Logger _logger =
Logger.getInstance(IndexedNameInterceptor.class);
Deleted:
/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/NameInterceptor.java
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/NameInterceptor.java?view=auto&rev=125540
==============================================================================
Modified:
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/PrefixNameInterceptor.java
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/PrefixNameInterceptor.java?view=diff&rev=125541&p1=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/PrefixNameInterceptor.java&r1=125540&p2=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/PrefixNameInterceptor.java&r2=125541
==============================================================================
---
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/PrefixNameInterceptor.java
(original)
+++
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/naming/PrefixNameInterceptor.java
Tue Jan 18 11:53:45 2005
@@ -22,7 +22,7 @@
import javax.servlet.jsp.tagext.Tag;
/**
- * A [EMAIL PROTECTED] NameInterceptor} that is used to add a prefix handler
onto a
+ * A [EMAIL PROTECTED] INameInterceptor} that is used to add a prefix handler
onto a
* NetUI tag that is being written to the client. Occasionally, NetUI
* tags need to be pre-processed before passing the name and value
* to the [EMAIL PROTECTED] org.apache.beehive.netui.pageflow.ProcessPopulate}
handler
@@ -34,7 +34,7 @@
* name of each paramter that should be handled by the implementation before
* updating the bean property.
*/
-public class PrefixNameInterceptor implements NameInterceptor
+public class PrefixNameInterceptor implements INameInterceptor
{
private String tagKey;
Modified:
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/tree/Tree.java
Url:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/tree/Tree.java?view=diff&rev=125541&p1=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/tree/Tree.java&r1=125540&p2=incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/tree/Tree.java&r2=125541
==============================================================================
---
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/tree/Tree.java
(original)
+++
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/tree/Tree.java
Tue Jan 18 11:53:45 2005
@@ -380,7 +380,6 @@
public void setRunAtClient(boolean runAtClient)
{
_runAtClient = runAtClient;
- System.err.println("RunAtClient:" + _runAtClient);
}
/**
@@ -559,7 +558,7 @@
reportErrors();
return;
}
-
+
// See if there is a TreeRoot already defined.
_expr = new ExpressionHandling(this);
TreeElement root = null;