Home | History | Annotate | Download | only in src

Lines Matching refs:scoped

1204     public static String scope(Scoped scoped) {
1205 if (scoped.isPublic()) {
1208 else if (scoped.isProtected()) {
1211 else if (scoped.isPackagePrivate()) {
1214 else if (scoped.isPrivate()) {
1218 throw new RuntimeException("invalid scope for object " + scoped);