📄 propernameprovider.java
字号:
/*
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -