⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pagexyobject.java

📁 iReport-0.4.1-src是iReport的源代码,iReport是一个开源的报表项目,可以生成PDF等格式报表
💻 JAVA
字号:
/* * PageNumberObject.java * * Created on 17 settembre 2004, 19.15 */package it.businesslogic.ireport.gui.library.objects;import it.businesslogic.ireport.gui.library.*;import it.businesslogic.ireport.*;/** * * @author  Administrator */public class PageXYObject extends AbstractLibraryObject {        private static javax.swing.ImageIcon defaultIcon;        static {                defaultIcon = new javax.swing.ImageIcon(AbstractLibraryObject.class.getResource("/it/businesslogic/ireport/icons/library/page_number.png"));    }        /** Creates a new instance of PageNumberObject */    public PageXYObject() {    }        public String getName()    {        return it.businesslogic.ireport.util.I18n.getString("gui.library.objects.pagexy","Page X of Y");    }    public void drop(java.awt.dnd.DropTargetDropEvent dtde) {                String exp = it.businesslogic.ireport.util.I18n.getString("gui.library.objects.pagexy","Page X of Y");        String exp1 = exp.substring(0, exp.indexOf("Y"));        String exp2 = exp.substring(exp.indexOf("Y"));        exp1 = it.businesslogic.ireport.util.Misc.string_replace("\\\"", "\"", exp1);        exp1 = "\"" + exp1 + "\"";        exp1 = it.businesslogic.ireport.util.Misc.string_replace("\" + $V{PAGE_NUMBER} + \"", "X", exp1);                exp2 = it.businesslogic.ireport.util.Misc.string_replace("\\\"", "\"", exp2);        exp2 = "\"" + exp2 + "\"";        exp2 = it.businesslogic.ireport.util.Misc.string_replace("\" + $V{PAGE_NUMBER} + \"", "Y", exp2);                TextFieldReportElement re = getReportFrame().dropNewTextField( dtde.getLocation(), exp1,  "java.lang.String", "Now" );        java.awt.Point location = dtde.getLocation();        re.setAlign("Right");        location.x += re.getWidth();        getReportFrame().dropNewTextField( location, exp2,  "java.lang.String", "Report" );                        getReportFrame().addSelectedElement( re );    }         public javax.swing.ImageIcon getIcon()    {        return defaultIcon;    }    }

⌨️ 快捷键说明

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