本文整理匯總了Java中org.jetbrains.ide.BuiltInServerManagerImpl類的典型用法代碼示例。如果您正苦於以下問題:Java BuiltInServerManagerImpl類的具體用法?Java BuiltInServerManagerImpl怎麽用?Java BuiltInServerManagerImpl使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
BuiltInServerManagerImpl類屬於org.jetbrains.ide包,在下文中一共展示了BuiltInServerManagerImpl類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: cannotBind
import org.jetbrains.ide.BuiltInServerManagerImpl; //導入依賴的package包/類
@Override
public void cannotBind(Exception e, int port) {
BuiltInServerManagerImpl.NOTIFICATION_GROUP.getValue().createNotification("Cannot start built-in HTTP server on custom port " +
port + ". " +
"Please ensure that port is free (or check your firewall settings) and restart " +
ApplicationNamesInfo.getInstance().getFullProductName(),
NotificationType.ERROR).notify(null);
}
示例2: cannotBind
import org.jetbrains.ide.BuiltInServerManagerImpl; //導入依賴的package包/類
@Override
public void cannotBind(Exception e, int port) {
BuiltInServerManagerImpl.NOTIFICATION_GROUP.getValue().createNotification("Cannot start built-in HTTP server on custom port " +
port +
". " +
"Please ensure that port is free (or check your firewall settings) and restart " +
ApplicationNamesInfo.getInstance().getFullProductName(), NotificationType.ERROR)
.notify(null);
}
示例3: setDefaultBuiltInServerPort
import org.jetbrains.ide.BuiltInServerManagerImpl; //導入依賴的package包/類
/**
* Default port will be occupied by main idea instance => define the custom default to avoid searching of free port
*/
public static void setDefaultBuiltInServerPort() {
System.setProperty(BuiltInServerManagerImpl.PROPERTY_RPC_PORT, "64463");
}