KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > calipso > reportgenerator > reportcalculator > DefaultCubeAction


1 package com.calipso.reportgenerator.reportcalculator;
2
3 import java.util.Collection JavaDoc;
4
5 /**
6  * Acción default
7  */

8 public class DefaultCubeAction extends CubeAction {
9   Object JavaDoc executeOn(Collection JavaDoc rows, Cube cube, int metric, int[] dimensions, Object JavaDoc[] values) {
10     return rows;
11   }
12 }
13
Popular Tags