Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,7 @@ protected void fillProperties(Map<String, Object> properties) {
properties.put(Schema.ABSTRACT, Modifier.isAbstract(javaModifiers));
properties.put(Schema.STATIC, Modifier.isStatic(javaModifiers));
properties.put(Schema.GLOBAL, getNode().getModifiers().has(ModifierTypeInfos.GLOBAL));
properties.put(Schema.VIRTUAL, getNode().getModifiers().has(ModifierTypeInfos.VIRTUAL));
properties.put(Schema.OVERRIDE, getNode().getModifiers().has(ModifierTypeInfos.OVERRIDE));
}
}
2 changes: 2 additions & 0 deletions sfge/src/main/java/com/salesforce/graph/Schema.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ public class Schema {
public static final String NAMES = "Names";
public static final String NAMESPACE_ACCESSIBLE = "NamespaceAccessible";
public static final String OPERATOR = "Operator";
public static final String OVERRIDE = "Override";
public static final String REFERENCE_TYPE = "ReferenceType";
public static final String REMOTE_ACTION = "RemoteAction";
public static final String RETURN_TYPE = "ReturnType";
Expand All @@ -60,6 +61,7 @@ public class Schema {
public static final String TYPE_REF = "TypeRef";

public static final String VALUE = "Value";
public static final String VIRTUAL = "Virtual";
public static final String QUERY = "Query";

public static final class JorjeNodeType {
Expand Down