001 /* 002 // $Id: //open/mondrian/src/main/mondrian/olap/Namer.java#3 $ 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) 2000-2002 Kana Software, Inc. 007 // Copyright (C) 2001-2005 Julian Hyde and others 008 // All Rights Reserved. 009 // You must accept the terms of that agreement to use this software. 010 // 011 */ 012 013 package mondrian.olap; 014 015 /** 016 * Namer contains the methods to retrieve localized attributes 017 */ 018 public interface Namer { 019 public String getLocalResource(String uName, String defaultValue); 020 } 021 022 023 // End Namer.java