001 /* 002 // $Id: //open/mondrian/src/main/mondrian/olap/PropertyFormatter.java#4 $ 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) 2004-2005 TONBELLER AG 007 // All Rights Reserved. 008 // You must accept the terms of that agreement to use this software. 009 */ 010 011 package mondrian.olap; 012 013 /** 014 * this interface provides a user exit to redefine 015 * a member property display string. 016 */ 017 public interface PropertyFormatter { 018 String formatProperty(Member member, String propertyName, Object propertyValue); 019 } 020 021 // End PropertyFormatter.java 022