reportelementsselectionevent.java

来自「iReport-0.4.1-src是iReport的源代码,iReport是一个」· 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 + -
显示快捷键?