formatelementsoperation.java

来自「优秀的打印控件全源代码,类似水晶表的设计器!」· Java 代码 · 共 36 行

JAVA
36
字号
/* * FormatElementsOperation.java * * Created on 17 settembre 2003, 17.20 */package it.businesslogic.ireport.undo;import it.businesslogic.ireport.*;import it.businesslogic.ireport.util.*;import it.businesslogic.ireport.gui.*;import java.util.*;/** * * @author  Administrator */public class FormatElementsOperation extends it.businesslogic.ireport.undo.TransformElementsOperation {        public int operationType=0;    /** Creates a new instance of FormatElementsOperation */    public FormatElementsOperation(JReportFrame jrf, int operationType) {        super(jrf);        this.operationType = operationType;    }           public String toString()    {        switch (operationType)        {            case OperationType.ALIGN_LEFT: return " align to left";            default: return " elements format";        }    }  }

⌨️ 快捷键说明

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