textannotationcell.java

来自「用JGraph编的软件」· Java 代码 · 共 28 行

JAVA
28
字号
package org.jgpd.jgraph;import org.jgraph.pad.TextCell;public class TextAnnotationCell extends org.jgraph.graph.DefaultGraphCell {  private boolean multiLined = true;        public TextAnnotationCell() {                this(null);        }        public TextAnnotationCell(Object userObject) {                super(userObject);        }        public TextAnnotationCell(Object userObject,boolean multilined) {                       super(userObject);                       this.multiLined=multilined;               }               public boolean isMultiLined() {                       return multiLined;               }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?