blob: cbcb1a2c6803b3fd95d21a3223b6d38d6dc991b6 [file] [log] [blame]
// Copyright 2004, 2005 The Apache Software Foundation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package org.apache.tapestry.components;
import org.apache.tapestry.AbstractComponent;
import org.apache.tapestry.IMarkupWriter;
import org.apache.tapestry.IRequestCycle;
/**
* A component that can substitute for any HTML element. [<a
* href="../../../../../ComponentReference/Any.html">Component Reference</a>]
*/
public abstract class Any extends AbstractComponent
{
protected void renderComponent(IMarkupWriter writer, IRequestCycle cycle)
{
String element = isParameterBound("element") ? getElement() : getTemplateTagName();
boolean rewinding = cycle.isRewinding();
if (!rewinding)
{
writer.begin(element);
renderInformalParameters(writer, cycle);
if (getId() != null && !isParameterBound("id"))
renderIdAttribute(writer, cycle);
}
renderBody(writer, cycle);
if (!rewinding)
{
writer.end();
}
}
public abstract String getElement();
}