1 /* 2 // $Id: //open/mondrian/src/main/mondrian/olap/Position.java#7 $ 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>Position</code> is an item on an {@link Axis}. It contains 20 * one or more {@link Member}s. 21 * 22 * @author jhyde 23 * @since 6 August, 2001 24 * @version $Id: //open/mondrian/src/main/mondrian/olap/Position.java#7 $ 25 */ 26 public interface Position extends List<Member> { 27 } 28 29 // End Position.java 30