Package org.eclipse.lemminx
Class XMLServerLauncher
- java.lang.Object
-
- org.eclipse.lemminx.XMLServerLauncher
-
public class XMLServerLauncher extends Object
-
-
Constructor Summary
Constructors Constructor Description XMLServerLauncher()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Future<?>launch(InputStream in, OutputStream out)LaunchesXMLLanguageServerand makes it accessible through the JSON RPC protocol defined by the LSP.static voidmain(String[] args)Callslaunch(InputStream, OutputStream), using the standard input and output streams.
-
-
-
Method Detail
-
main
public static void main(String[] args)
Callslaunch(InputStream, OutputStream), using the standard input and output streams.
-
launch
public static Future<?> launch(InputStream in, OutputStream out)
LaunchesXMLLanguageServerand makes it accessible through the JSON RPC protocol defined by the LSP.- Parameters:
launcherFuture- The future returned byLauncher.startListening(). (I'm not 100% sure how it meant to be used though, as it's undocumented...)
-
-