We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dca9db7 commit 6f66a85Copy full SHA for 6f66a85
plugins/org.eclipse.glsp.server/src/org/eclipse/glsp/server/operations/Operation.java
@@ -26,6 +26,13 @@
26
*/
27
public abstract class Operation extends Action {
28
29
+ /**
30
+ * Read only discriminatory property needed to
31
+ * distinguish between operations and other action types on the client side.
32
+ */
33
+ @SuppressWarnings("checkstyle:visibilitymodifier")
34
+ final boolean isOperation = true;
35
+
36
public Operation(final String operationKind) {
37
super(operationKind);
38
}
0 commit comments