blob: 291805f1e41b6dd7c78bdd88b8a4f5443fbf7406 [file] [log] [blame]
/**
*
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
*/
package org.eclipse.osbp.xtext.datamart.common;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import mondrian.rolap.RolapConnection;
import org.eclipse.osbp.dsl.common.datatypes.IDto;
import org.eclipse.osbp.ui.api.datamart.DatamartFilter;
import org.eclipse.osbp.ui.api.user.IUser;
import org.eclipse.osbp.xtext.datamart.common.olap.DerivedCellSet;
@SuppressWarnings("all")
public abstract class ACubeDatamart extends ADatamart<RolapConnection> {
public abstract DerivedCellSet getResults(final Class operativeDtoClass, final List<IDto> operativeDtos);
@Override
public final HashMap<Integer, ArrayList<String>> getAxisMap() {
return null;
}
}