decoratoritem.java
来自「用applet实现很多应用小程序」· Java 代码 · 共 21 行
JAVA
21 行
package prefuse.visual;
/**
* VisualItem that "decorates" another VisualItem. DecoratorItem instances
* allow the decorated item to be retrieved, and used to compute visual
* properties for this item. Example decorator items might include attaching
* an external label to an item or adding interactive handles to another
* item.
*
* @author <a href="http://jheer.org">jeffrey heer</a>
*/
public interface DecoratorItem extends VisualItem {
/**
* Get the VisualItem that this item is decorating.
* @return the decorated VisualItem
*/
public VisualItem getDecoratedItem();
} // end of interface DecoratorItem
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?