KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > mondrian > olap > PropertyFormatter


1 /*
2 // $Id: //open/mondrian/src/main/mondrian/olap/PropertyFormatter.java#4 $
3 // This software is subject to the terms of the Common Public License
4 // Agreement, available at the following URL:
5 // http://www.opensource.org/licenses/cpl.html.
6 // Copyright (C) 2004-2005 TONBELLER AG
7 // All Rights Reserved.
8 // You must accept the terms of that agreement to use this software.
9 */

10
11 package mondrian.olap;
12
13 /**
14  * this interface provides a user exit to redefine
15  * a member property display string.
16  */

17 public interface PropertyFormatter {
18     String JavaDoc formatProperty(Member member, String JavaDoc propertyName, Object JavaDoc propertyValue);
19 }
20
21 // End PropertyFormatter.java
22

23
Popular Tags