ludc
2025-01-16 986aa62ed00bee39363bab41b4eeb8259d446efd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package com.vci.client.portal.UI.v3.comptdesign.compt.al;
 
import java.awt.event.ActionEvent;
import java.util.List;
 
import com.vci.client.portal.UI.v3.comptdesign.UIComptDesignDialog;
import com.vci.client.portal.UI.v3.comptdesign.compt.BaseComptPanel;
import com.vci.client.portal.UI.v3.comptdesign.compt.popupcompt.BasePopupDialog;
import com.vci.client.portal.UI.v3.comptdesign.compt.popupcompt.QTPopupDialog;
import com.vci.client.portal.utility.UIServiceLocaleDisplay;
import com.vci.client.ui.swing.components.VCIJOptionPane;
import com.vci.client.ui.swing.components.VCIJTextField;
import com.vci.mw.ClientContextVariable;
 
public class QTEditActionListener extends BaseActionListener<QTPopupDialog> {
 
    public QTEditActionListener(
            BaseComptPanel ownedComptPanel,
            UIComptDesignDialog ownedUIComptDesignDialog, 
            VCIJTextField txt,
            List<VCIJTextField> clearTxts
            ){
        super(ownedComptPanel, ownedUIComptDesignDialog, txt, clearTxts);
        
    }
    
    
    @Override
    public void actionPerformed(ActionEvent e) {
        super.actionPerformed(e);
        // TODO Auto-generated method stub
        VCIJOptionPane.showMessage(ClientContextVariable.getFrame(), 
                UIServiceLocaleDisplay.getIl18n("敬请期待!", ""));
    }
 
 
    @Override
    protected BasePopupDialog getBtnActionShowPopupDialog() {
        // TODO Auto-generated method stub
        return null;
    }
 
 
    @Override
    protected Runnable getBtnActionShowPopupDialogCallback(
            QTPopupDialog popupDialog) {
        // TODO Auto-generated method stub
        return null;
    }
 
}