本文整理匯總了Java中org.eclipse.lsp4j.jsonrpc.messages.NotificationMessage.setParams方法的典型用法代碼示例。如果您正苦於以下問題:Java NotificationMessage.setParams方法的具體用法?Java NotificationMessage.setParams怎麽用?Java NotificationMessage.setParams使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.eclipse.lsp4j.jsonrpc.messages.NotificationMessage
的用法示例。
在下文中一共展示了NotificationMessage.setParams方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: notify
import org.eclipse.lsp4j.jsonrpc.messages.NotificationMessage; //導入方法依賴的package包/類
@Override
public void notify(String method, Object parameter) {
NotificationMessage notificationMessage = new NotificationMessage();
notificationMessage.setJsonrpc(MessageConstants.JSONRPC_VERSION);
notificationMessage.setMethod(method);
notificationMessage.setParams(parameter);
out.consume(notificationMessage);
}
示例2: testTelemetry
import org.eclipse.lsp4j.jsonrpc.messages.NotificationMessage; //導入方法依賴的package包/類
@Test
public void testTelemetry() {
NotificationMessage _notificationMessage = new NotificationMessage();
final Procedure1<NotificationMessage> _function = (NotificationMessage it) -> {
it.setJsonrpc("2.0");
it.setMethod(MessageMethods.TELEMETRY_EVENT);
JsonSerializeTest.TestObject _testObject = new JsonSerializeTest.TestObject();
it.setParams(_testObject);
};
final NotificationMessage message = ObjectExtensions.<NotificationMessage>operator_doubleArrow(_notificationMessage, _function);
StringConcatenation _builder = new StringConcatenation();
_builder.append("{");
_builder.newLine();
_builder.append(" ");
_builder.append("\"jsonrpc\": \"2.0\",");
_builder.newLine();
_builder.append(" ");
_builder.append("\"method\": \"telemetry/event\",");
_builder.newLine();
_builder.append(" ");
_builder.append("\"params\": {");
_builder.newLine();
_builder.append(" ");
_builder.append("\"foo\": 12.3,");
_builder.newLine();
_builder.append(" ");
_builder.append("\"bar\": \"qwertz\"");
_builder.newLine();
_builder.append(" ");
_builder.append("}");
_builder.newLine();
_builder.append("}");
_builder.newLine();
this.assertSerialize(message, _builder);
}
示例3: testTelemetry
import org.eclipse.lsp4j.jsonrpc.messages.NotificationMessage; //導入方法依賴的package包/類
@Test
public void testTelemetry() {
StringConcatenation _builder = new StringConcatenation();
_builder.append("{");
_builder.newLine();
_builder.append("\t");
_builder.append("\"jsonrpc\": \"2.0\",");
_builder.newLine();
_builder.append("\t");
_builder.append("\"method\": \"telemetry/event\",");
_builder.newLine();
_builder.append("\t");
_builder.append("\"params\": {");
_builder.newLine();
_builder.append("\t\t");
_builder.append("\"foo\": 12.3,");
_builder.newLine();
_builder.append("\t\t");
_builder.append("\"bar\": \"qwertz\"");
_builder.newLine();
_builder.append("\t");
_builder.append("}");
_builder.newLine();
_builder.append("}");
_builder.newLine();
NotificationMessage _notificationMessage = new NotificationMessage();
final Procedure1<NotificationMessage> _function = (NotificationMessage it) -> {
it.setJsonrpc("2.0");
it.setMethod(MessageMethods.TELEMETRY_EVENT);
Pair<String, Double> _mappedTo = Pair.<String, Double>of("foo", Double.valueOf(12.3));
Pair<String, String> _mappedTo_1 = Pair.<String, String>of("bar", "qwertz");
it.setParams(CollectionLiterals.<String, Object>newLinkedHashMap(_mappedTo, _mappedTo_1));
};
NotificationMessage _doubleArrow = ObjectExtensions.<NotificationMessage>operator_doubleArrow(_notificationMessage, _function);
this.assertParse(_builder, _doubleArrow);
}
示例4: createNotificationMessage
import org.eclipse.lsp4j.jsonrpc.messages.NotificationMessage; //導入方法依賴的package包/類
protected NotificationMessage createNotificationMessage(String method, Object parameter) {
NotificationMessage notificationMessage = new NotificationMessage();
notificationMessage.setJsonrpc(MessageConstants.JSONRPC_VERSION);
notificationMessage.setMethod(method);
notificationMessage.setParams(parameter);
return notificationMessage;
}