View Javadoc

1   /*
2    * joey-gen and its relative products are published under the terms
3    * of the Apache Software License.
4    * 
5    * Created on 2004/08/12 22:55:38
6    */
7   package org.asyrinx.joey.gen.model.java;
8   
9   import org.apache.commons.lang.enum.Enum;
10  
11  /***
12   * @author akima
13   */
14  public class Visibility extends Enum {
15  
16      /***
17       * @param name
18       */
19      public Visibility(String name) {
20          super(name);
21      }
22  
23      public static final Visibility PRIVATE = new Visibility("private");
24  
25      public static final Visibility PROTECTED = new Visibility("protected");
26  
27      public static final Visibility PACKAGE = new Visibility("package");
28  
29      public static final Visibility PUBLIC = new Visibility("public");
30  
31  }