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

org.eclipse.birt.data.engine.impl.document.IRDGroupUtil Maven / Gradle / Ivy

There is a newer version: 4.6.0-20160607
Show newest version
package org.eclipse.birt.data.engine.impl.document;

import java.util.List;

import org.eclipse.birt.data.engine.core.DataException;


public interface IRDGroupUtil
{
	public void setCacheProvider( CacheProvider cacheProvider );
	public void next( boolean hasNext ) throws DataException;
	public int getCurrentGroupIndex( int groupLevel ) throws DataException;
	public void move( ) throws DataException;
	public int getEndingGroupLevel( ) throws DataException;
	public int getStartingGroupLevel( ) throws DataException;
	public void last( int groupLevel ) throws DataException;
	public void close( ) throws DataException;
	public int[] getGroupStartAndEndIndex( int groupIndex ) throws DataException;
	public List[] getGroups( ) throws DataException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy