001/*
002// This software is subject to the terms of the Eclipse Public License v1.0
003// Agreement, available at the following URL:
004// http://www.eclipse.org/legal/epl-v10.html.
005// You must accept the terms of that agreement to use this software.
006//
007// Copyright (C) 2004-2005 TONBELLER AG
008// Copyright (C) 2006-2011 Pentaho and others
009// All Rights Reserved.
010*/
011package mondrian.olap;
012
013/**
014 * An SPI to format the cell value to be displayed.
015 *
016 * @deprecated Use {@link mondrian.spi.CellFormatter}. This interface
017 * exists for temporary backwards compatibility and will be removed
018 * in mondrian-4.0.
019 */
020public interface CellFormatter extends mondrian.spi.CellFormatter {
021}
022
023// End CellFormatter.java