ludc
2025-01-15 d42f321ca241ab7f8bb3cdc71f11fe5ec4ebc48d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.vci.client.workflow.editor.user;
 
import javax.swing.JDialog;
 
import com.vci.client.LogonApplication;
 
public abstract class CustomUserDialog extends JDialog{
 
    private static final long serialVersionUID = 1L;
    public UserPanel userPanel;
    public CustomUserDialog(UserPanel userPanel){
        super(LogonApplication.frame,true);
        this.userPanel = userPanel;
    }
    
//    public NamingContextExt  getNamingContextExt (){
//        return ClientSession.nsu.getNameContext();
//    }
}