001    /*
002    // $Id: //open/mondrian/src/main/mondrian/olap/Position.java#7 $
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>Position</code> is an item on an {@link Axis}.  It contains
020     * one or more {@link Member}s.
021     *
022     * @author jhyde
023     * @since 6 August, 2001
024     * @version $Id: //open/mondrian/src/main/mondrian/olap/Position.java#7 $
025     */
026    public interface Position extends List<Member> {
027    }
028    
029    // End Position.java