Re: i18n

Shash Chatterjee <[email protected]> Sat, 03 Sep 2005 17:58:49 -0500
Newsgroups gmane.comp.java.keel.devel
Message-ID <[email protected]>
I have attached it here, you probably won't see it in CVS for another 24
hours.

>I think org.keel.util.i18n.I18n is missing in keel-common - maybe  was
>not checked in CVS...
>http://keelframework.org/documentation.shtml
>Keelgroup mailing list
>[email protected]
>http://lists.keelframework.com/listinfo.cgi/keelgroup-keelframework.com
>  
>
I18n.java (text/plain, 513 B)
/*
 * Copyright (c) 2002, The Keel Group, Ltd. All rights reserved.
 *
 * This software is made available under the terms of the license found
 * in the LICENSE file, included with this source code. The license can
 * also be found at:
 * http://www.keelframework.net/LICENSE
 */
package org.keel.util.i18n;

public interface I18n {

	public abstract String getMessage(String key);

	public abstract String getMessage(String key, String value);

	public abstract String getMessage(String key, Object[] params);

}