001    /*
002    // $Id: //open/mondrian/src/main/mondrian/olap/Axis.java#6 $
003    // This software is subject to the terms of the Common Public License
004    // Agreement, available at the following URL:
005    // http://www.opensource.org/licenses/cpl.html.
006    // Copyright (C) 2001-2002 Kana Software, Inc.
007    // Copyright (C) 2001-2007 Julian Hyde and others
008    // All Rights Reserved.
009    // You must accept the terms of that agreement to use this software.
010    //
011    // jhyde, 6 August, 2001
012    */
013    
014    package mondrian.olap;
015    
016    import java.util.List;
017    
018    /**
019     * A <code>Axis</code> is a component of a {@link Result}.
020     * It contains a list of {@link Position}s.
021     *
022     * @author jhyde
023     * @since 6 August, 2001
024     * @version $Id: //open/mondrian/src/main/mondrian/olap/Axis.java#6 $
025     */
026    public interface Axis {
027        List<Position> getPositions();
028    }
029    // End Axis.java