// TODO: login to github must be merged with tasks server settings public GithubLoginDialog(final Project project) { super(project, true); myProject = project; myGithubLoginPanel = new GithubLoginPanel(this); final GithubSettings settings = GithubSettings.getInstance(); myGithubLoginPanel.setLogin(settings.getLogin()); myGithubLoginPanel.setPassword(settings.getPassword()); setTitle("Login to GitHub"); setOKButtonText("Login"); init(); }