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

📄 pastestyledelementitem.java

📁 优秀的打印控件全源代码,类似水晶表的设计器!
💻 JAVA
字号:
/* * ReplacedElementItem.java * * Created on 18 giugno 2004, 14.30 */package it.businesslogic.ireport.undo;import it.businesslogic.ireport.*;/** * * @author  Administrator */public class PasteStyledElementItem {       private ReportElement originalStyle = null;   private ReportElement newStyle = null;   private ReportElement element = null;       public PasteStyledElementItem(ReportElement element, ReportElement originalStyle, ReportElement newStyle) {       this.newStyle = newStyle;       this.originalStyle = originalStyle;       this.element = element;   }         /**    * Getter for property element.    * @return Value of property element.    */   public it.businesslogic.ireport.ReportElement getElement() {       return element;   }       /**    * Setter for property element.    * @param element New value of property element.    */   public void setElement(it.businesslogic.ireport.ReportElement element) {       this.element = element;   }      /**    * Getter for property newStyle.    * @return Value of property newStyle.    */   public it.businesslogic.ireport.ReportElement getNewStyle() {       return newStyle;   }      /**    * Setter for property newStyle.    * @param newStyle New value of property newStyle.    */   public void setNewStyle(it.businesslogic.ireport.ReportElement newStyle) {       this.newStyle = newStyle;   }      /**    * Getter for property originalStyle.    * @return Value of property originalStyle.    */   public it.businesslogic.ireport.ReportElement getOriginalStyle() {       return originalStyle;   }      /**    * Setter for property originalStyle.    * @param originalStyle New value of property originalStyle.    */   public void setOriginalStyle(it.businesslogic.ireport.ReportElement originalStyle) {       this.originalStyle = originalStyle;   }   }

⌨️ 快捷键说明

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