帆软报表设计器源代码。
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.

43 lines
1.2 KiB

package com.fr.env;
7 years ago
import com.fr.core.env.EnvConfig;
7 years ago
import com.fr.core.env.EnvContext;
import com.fr.core.env.EnvEvent;
7 years ago
import com.fr.design.mainframe.DesignerContext;
import com.fr.design.utils.DesignUtils;
7 years ago
import com.fr.event.Event;
import com.fr.event.EventDispatcher;
import com.fr.event.Listener;
import com.fr.event.Null;
import com.fr.general.ComparatorUtils;
7 years ago
import com.fr.general.Inter;
import javax.swing.*;
public class SignIn {
7 years ago
static {
EventDispatcher.listen(EnvEvent.CONNECTION_ERROR, new Listener<Null>() {
7 years ago
@Override
7 years ago
public void on(Event event, Null param) {
7 years ago
JOptionPane.showMessageDialog(DesignerContext.getDesignerFrame(), Inter.getLocText("Datasource-Connection_failed"));
7 years ago
}
});
}
/**
* 注册入环境
7 years ago
*
* @param selectedEnv 选择的环境
* @throws Exception 异常
*/
7 years ago
public static void signIn(EnvConfig selectedEnv) throws Exception {
7 years ago
if (EnvContext.currentEnv() != null && !ComparatorUtils.equals(EnvContext.currentEnv(), selectedEnv)) {
EnvContext.signOut();
}
DesignUtils.switchToEnv(selectedEnv);
}
7 years ago
}