1 /* 2 // $Id: //open/mondrian/src/main/mondrian/olap/Axis.java#6 $ 3 // This software is subject to the terms of the Common Public License 4 // Agreement, available at the following URL: 5 // http://www.opensource.org/licenses/cpl.html. 6 // Copyright (C) 2001-2002 Kana Software, Inc. 7 // Copyright (C) 2001-2007 Julian Hyde and others 8 // All Rights Reserved. 9 // You must accept the terms of that agreement to use this software. 10 // 11 // jhyde, 6 August, 2001 12 */ 13 14 package mondrian.olap; 15 16 import java.util.List; 17 18 /** 19 * A <code>Axis</code> is a component of a {@link Result}. 20 * It contains a list of {@link Position}s. 21 * 22 * @author jhyde 23 * @since 6 August, 2001 24 * @version $Id: //open/mondrian/src/main/mondrian/olap/Axis.java#6 $ 25 */ 26 public interface Axis { 27 List<Position> getPositions(); 28 } 29 // End Axis.java 30