/[projects]/miscJava/bukkit-minecraft-plugins/HoerupUtils/src/main/java/dk/thoerup/bukkit/hoeruputils/chests/ChestBean.java
ViewVC logotype

Diff of /miscJava/bukkit-minecraft-plugins/HoerupUtils/src/main/java/dk/thoerup/bukkit/hoeruputils/chests/ChestBean.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

miscJava/bukkit-minecraft-plugins/HoerupUtils/src/main/java/dk/thoerup/bukkit/hoeruputils/chests/LockedChestBean.java revision 1806 by torben, Mon May 28 15:36:28 2012 UTC miscJava/bukkit-minecraft-plugins/HoerupUtils/src/main/java/dk/thoerup/bukkit/hoeruputils/chests/ChestBean.java revision 1807 by torben, Sun Jun 3 18:05:09 2012 UTC
# Line 8  import javax.persistence.Id; Line 8  import javax.persistence.Id;
8    
9    
10  @Entity  @Entity
11  public class LockedChestBean {  public class ChestBean {
12            final static int LOCKED = 1;
13            final static int SNITCHING = 2;
14            
15            
16          @Id          @Id
17          @GeneratedValue          @GeneratedValue
18          int id;          int id;
# Line 23  public class LockedChestBean { Line 27  public class LockedChestBean {
27                    
28          boolean doublechest = false;          boolean doublechest = false;
29                    
30          String modifyPlayers;            String modifyPlayers;
31            
32            int chestType;
33    
34                    
35    
36                    
37            public int getChestType() {
38                    return chestType;
39            }
40            public void setChestType(int chestType) {
41                    this.chestType = chestType;
42            }
43          public String getOwner() {          public String getOwner() {
44                  return owner;                  return owner;
45          }          }

Legend:
Removed from v.1806  
changed lines
  Added in v.1807

  ViewVC Help
Powered by ViewVC 1.1.20