001 /* 002 // $Id: //open/util/resgen/src/org/eigenbase/resgen/ResourceInstance.java#3 $ 003 // Package org.eigenbase.resgen is an i18n resource generator. 004 // Copyright (C) 2005-2005 The Eigenbase Project 005 // Copyright (C) 2005-2005 Disruptive Tech 006 // Copyright (C) 2005-2005 LucidEra, Inc. 007 // Portions Copyright (C) 2002-2005 Kana Software, Inc. and others. 008 // 009 // This library is free software; you can redistribute it and/or modify it 010 // under the terms of the GNU Lesser General Public License as published by the 011 // Free Software Foundation; either version 2 of the License, or (at your 012 // option) any later version approved by The Eigenbase Project. 013 // 014 // This library is distributed in the hope that it will be useful, 015 // but WITHOUT ANY WARRANTY; without even the implied warranty of 016 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 017 // GNU Lesser General Public License for more details. 018 // 019 // You should have received a copy of the GNU Lesser General Public License 020 // along with this library; if not, write to the Free Software 021 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 022 // 023 // jhyde, 19 September, 2002 024 */ 025 package org.eigenbase.resgen; 026 027 028 029 /** 030 * A <code>ResourceInstance</code> is an occurrence of a {@link 031 * ResourceDefinition} with a set of arguments. It can later be formatted to a 032 * specific locale. 033 */ 034 public interface ResourceInstance { 035 public String toString(); 036 } 037 038 // End ResourceInstance.java