116117118119120121122123124125126
public boolean isGlobal() { return getAnnotation(GlobalScope.class) != null; } public String getNamespace() { Namespace ns = element.getAnnotation(Namespace.class); if (ns != null) { return ns.value(); } return null; }
6667686970717273747576
} return GeneratorConstants.SUPER.equals(((IdentifierTree) expression).getName().toString()); } public static String getNamespace(Element type) { Namespace ns = type.getAnnotation(Namespace.class); if (ns != null) { return ns.value(); } return null; }