001 /*
002 // $Id: //open/mondrian-release/3.0/src/main/mondrian/rolap/RolapMeasure.java#2 $
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-2006 Julian Hyde and others
008 // All Rights Reserved.
009 // You must accept the terms of that agreement to use this software.
010 //
011 // jhyde, 10 August, 2001
012 */
013
014 package mondrian.rolap;
015 import mondrian.olap.Member;
016 import mondrian.olap.CellFormatter;
017
018 /**
019 * Interface implemented by all measures (both stored and calculated).
020 *
021 * @author jhyde
022 * @since 10 August, 2001
023 * @version $Id: //open/mondrian-release/3.0/src/main/mondrian/rolap/RolapMeasure.java#2 $
024 */
025 public interface RolapMeasure extends Member {
026 /**
027 * Returns the object that formats cells of this measure, or null to use
028 * default formatting.
029 *
030 * @return formatter
031 */
032 CellFormatter getFormatter();
033 }
034
035 // End RolapMeasure.java