📄 linkable.java
字号:
package org.enhydra.jawe.components.graph;/*** Defines the requirements for an object that* represents a cell that should be linked with* other cells.*/public interface Linkable { /** * Returns <code>true</code> if cell that implements it is a valid source for link. */ boolean acceptsSource(); /** * Returns <code>true</code> if cell that implements it is a valid target for link. */ boolean acceptsTarget();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -