本文整理汇总了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;
}