You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
671 B
33 lines
671 B
package com.fr.design.actions.help; |
|
|
|
import com.fr.config.ConfigContext; |
|
import com.fr.design.actions.UpdateAction; |
|
import com.fr.design.dialog.BasicPane; |
|
import com.fr.workspace.WorkContext; |
|
|
|
import java.awt.event.ActionEvent; |
|
|
|
public class ConfigManagerAction extends UpdateAction { |
|
|
|
|
|
public ConfigManagerAction() { |
|
setName("ConfigManager"); |
|
} |
|
|
|
@Override |
|
public void actionPerformed(ActionEvent e) { |
|
|
|
} |
|
|
|
public static class ConfigManagerPane extends BasicPane { |
|
|
|
public ConfigManagerPane() { |
|
|
|
} |
|
|
|
@Override |
|
protected String title4PopupWindow() { |
|
return "ConfigManagerPane"; |
|
} |
|
} |
|
}
|
|
|