blob: 86e6dd9a368f053f6ae3bcb293852920252ed3af [file] [log] [blame]
// Copyright 2004 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.wml;
import org.apache.tapestry.AbstractComponent;
import org.apache.tapestry.IAsset;
import org.apache.tapestry.IMarkupWriter;
import org.apache.tapestry.IRequestCycle;
/**
* The Image component indicates that an image is to be included in the text flow. Image layout is done within the
* context of normal text layout.
*
* @version $Id$
* @author David Solis
* @since 3.0
*
**/
public abstract class Image extends AbstractComponent
{
/**
* @see org.apache.tapestry.AbstractComponent#renderComponent(org.apache.tapestry.IMarkupWriter, org.apache.tapestry.IRequestCycle)
**/
protected void renderComponent(IMarkupWriter writer, IRequestCycle cycle)
{
boolean render = !cycle.isRewinding();
if (render)
{
writer.beginEmpty("img");
writer.attribute("src", getImage().buildURL(cycle));
writer.attribute("alt", getAlt());
renderInformalParameters(writer, cycle);
writer.closeTag();
}
}
public abstract IAsset getImage();
public abstract String getAlt();
}