001/*
002// This software is subject to the terms of the Eclipse Public License v1.0
003// Agreement, available at the following URL:
004// http://www.eclipse.org/legal/epl-v10.html.
005// You must accept the terms of that agreement to use this software.
006//
007// Copyright (C) 2001-2005 Julian Hyde
008// Copyright (C) 2005-2007 Pentaho and others
009// All Rights Reserved.
010*/
011package mondrian.olap;
012
013import java.util.List;
014
015/**
016 * A <code>Axis</code> is a component of a {@link Result}.
017 * It contains a list of {@link Position}s.
018 *
019 * @author jhyde
020 * @since 6 August, 2001
021 */
022public interface Axis {
023    List<Position> getPositions();
024}
025// End Axis.java