graphproperties.java
来自「Semantic Web Ontology Editor」· Java 代码 · 共 23 行
JAVA
23 行
/*
* Created on Apr 21, 2005
*/
package org.mindswap.swoop.utils.graph;
import java.util.Collection;
/**
* @author Evren Sirin
*
*/
public interface GraphProperties {
public String getShortName(Object obj);
public String getLongName(Object obj);
public Collection getLinkedElements(Object obj);
public int getSize(Object obj);
public String getPreferredLayout();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?