propernameprovider.java
来自「用JGraph编的软件」· Java 代码 · 共 30 行
JAVA
30 行
/*
* This file is part of the Librarian project
* (C) 2002 The Librarian Community
*
* Please visit our website at http://librarian.sf.de
*/
package org.jgraph.pad.resources;
import java.util.Enumeration;
/**Container for proper names. (e.g. Look and Feel names are
* equal in any language, sothat this container.)
*
* @author <a href="mailto:Sven.Luzar@web.de">Sven luzar</a>
* @version 1.0
*/
public interface ProperNameProvider {
/** Returns the Keys of this proper name container
*
*/
public abstract Enumeration getKeys() ;
/** Returns the proper name for the locale key.
*
*/
public String getString(String key) ;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?