Examples of resetAxisSelections()


Examples of org.saiku.olap.query.IQuery.resetAxisSelections()

  public void clearAxisSelections(String queryName, String axisName) {
    IQuery query = getIQuery(queryName);
    if (Axis.Standard.valueOf(axisName) != null) {
      QueryAxis qAxis = query.getAxis(Axis.Standard.valueOf(axisName));
      query.resetAxisSelections(qAxis);
    }
  }

  public void sortAxis(String queryName, String axisName, String sortLiteral, String sortOrder) {
    IQuery query = getIQuery(queryName);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.