001    /*
002    // $Id: //open/mondrian-release/3.2/src/main/mondrian/olap/PropertyFormatter.java#1 $
003    // This software is subject to the terms of the Eclipse Public License v1.0
004    // Agreement, available at the following URL:
005    // http://www.eclipse.org/legal/epl-v10.html.
006    // Copyright (C) 2004-2005 TONBELLER AG
007    // Copyright (C) 2006-2009 Julian Hyde and others
008    // All Rights Reserved.
009    // You must accept the terms of that agreement to use this software.
010    */
011    
012    package mondrian.olap;
013    
014    /**
015     * Callback to redefine a member property display string.
016     */
017    public interface PropertyFormatter {
018        String formatProperty(
019            Member member, String propertyName, Object propertyValue);
020    }
021    
022    // End PropertyFormatter.java