本文整理汇总了Java中edu.umd.cs.findbugs.util.LaunchBrowser.showDocument方法的典型用法代码示例。如果您正苦于以下问题:Java LaunchBrowser.showDocument方法的具体用法?Java LaunchBrowser.showDocument怎么用?Java LaunchBrowser.showDocument使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类edu.umd.cs.findbugs.util.LaunchBrowser
的用法示例。
在下文中一共展示了LaunchBrowser.showDocument方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: signIn
import edu.umd.cs.findbugs.util.LaunchBrowser; //导入方法依赖的package包/类
public boolean signIn(CloudPlugin plugin, BugCollection bugCollection) throws IOException {
loadProperties(plugin);
if (softSignin())
return true;
if (sessionId == null)
sessionId = loadOrCreateSessionId();
LOGGER.info("Opening browser for session " + sessionId);
URL u = new URL(url + "/browser-auth/" + sessionId);
LaunchBrowser.showDocument(u);
// wait 1 minute for the user to sign in
for (int i = 0; i < USER_SIGNIN_TIMEOUT_SECS; i++) {
if (checkAuthorized(getAuthCheckUrl(sessionId))) {
return true;
}
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
break;
}
}
LOGGER.info("Sign-in timed out for " + sessionId);
throw new IOException("Sign-in timed out");
}
示例2: editorPaneHyperlinkUpdate
import edu.umd.cs.findbugs.util.LaunchBrowser; //导入方法依赖的package包/类
private void editorPaneHyperlinkUpdate(javax.swing.event.HyperlinkEvent evt) {//GEN-FIRST:event_editorPaneHyperlinkUpdate
try {
if (evt.getEventType().equals( HyperlinkEvent.EventType.ACTIVATED)) {
URL url = evt.getURL();
LaunchBrowser.showDocument(url);
}
}
catch (Exception e) {
}
}
示例3: editorPaneHyperlinkUpdate
import edu.umd.cs.findbugs.util.LaunchBrowser; //导入方法依赖的package包/类
static void editorPaneHyperlinkUpdate(javax.swing.event.HyperlinkEvent evt) {// GEN-FIRST:event_editorPaneHyperlinkUpdate
try {
if (evt.getEventType().equals(HyperlinkEvent.EventType.ACTIVATED)) {
URL url = evt.getURL();
LaunchBrowser.showDocument(url);
}
} catch (Exception e) {
}
}
示例4: showDocument
import edu.umd.cs.findbugs.util.LaunchBrowser; //导入方法依赖的package包/类
public boolean showDocument(URL u) {
return LaunchBrowser.showDocument(u);
}