田源
2024-03-26 926d1a1a4f06271cb39de001d74c68832fc004c7
1
2
3
4
5
6
7
8
9
10
11
12
package com.vci.client.workflow.editor.user;
 
import java.util.List;
 
import javax.swing.JComponent;
 
public interface IRoleComponent {
 
    public JComponent getRoleComponent();
 
    public List<String> getSelectedRoles();
}