reportelementsselectionevent.java
来自「优秀的打印控件全源代码,类似水晶表的设计器!」· Java 代码 · 共 42 行
JAVA
42 行
/* * ReportListenerElementsSelectionEvent.java * * Created on 17 giugno 2003, 1.12 */package it.businesslogic.ireport.gui.event;import it.businesslogic.ireport.gui.*;/** * Save all info required by a ReportListenerElementsSelectionEvent * Return the vector of selected elements (taked by the JReportFrame...) * @author Administrator */public class ReportElementsSelectionEvent { private JReportFrame jReportFrame; java.util.Vector selectedElements; /** Creates a new instance of ReportListenerElementsSelectionEvent */ public ReportElementsSelectionEvent(JReportFrame jReportFrame, java.util.Vector selectedElements) { this.jReportFrame = jReportFrame; this.selectedElements = selectedElements; } /** Getter for property selectedElements. * @return Value of property selectedElements. * */ public java.util.Vector getSelectedElements() { return selectedElements; } /** Setter for property selectedElements. * @param selectedElements New value of property selectedElements. * */ public void setSelectedElements(java.util.Vector selectedElements) { this.selectedElements = selectedElements; } }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?