All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.birt.report.engine.content.impl.ListBandContent Maven / Gradle / Ivy

There is a newer version: 4.6.0-20160607
Show newest version

package org.eclipse.birt.report.engine.content.impl;

import org.eclipse.birt.core.exception.BirtException;
import org.eclipse.birt.report.engine.content.IContent;
import org.eclipse.birt.report.engine.content.IContentVisitor;
import org.eclipse.birt.report.engine.content.IListBandContent;
import org.eclipse.birt.report.engine.content.IReportContent;

public class ListBandContent extends AbstractBandContent
		implements
			IListBandContent
{
	
	ListBandContent(IListBandContent listBand)
	{
		super(listBand);
	}
	
	ListBandContent( IReportContent report )
	{
		super( report );
	}
	
	public int getContentType( )
	{
		return LIST_BAND_CONTENT;
	}
	
	public Object accept( IContentVisitor visitor, Object value )
			throws BirtException
	{
		return visitor.visitListBand( this, value );
	}
	
	protected IContent cloneContent()
	{
		return new ListBandContent(this);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy