1 package org.codehaus.gmavenplus.model;
2
3
4 /**
5 * Scope access modifiers supported by Java.
6 *
7 * @author Keegan Witt
8 */
9 public enum Scopes {
10
11 /**
12 * The public scope.
13 */
14 PUBLIC,
15
16 /**
17 * The protected scope.
18 */
19 PROTECTED,
20
21 /**
22 * The package scope.
23 */
24 PACKAGE,
25
26 /**
27 * The private scope.
28 */
29 PRIVATE
30
31 }