mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-16 16:58:56 +00:00
[Xbase] introduced JvmModelCompleter to complete a JvmModel according to Java defaults.
This commit is contained in:
parent
70c41e25ee
commit
6b0e632252
1 changed files with 2 additions and 0 deletions
|
@ -22,6 +22,8 @@ public class ClasspathUriUtil {
|
|||
public static final String CLASSPATH_SCHEME = "classpath";
|
||||
|
||||
public static boolean isClasspathUri(URI uri) {
|
||||
if (uri == null)
|
||||
return false;
|
||||
String scheme = uri.scheme();
|
||||
return CLASSPATH_SCHEME.equals(scheme);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue