1 import proguard.annotation.*; 2 3 11 @Keep 12 @KeepPublicGettersSetters 13 public class Bean 14 { 15 public boolean booleanProperty; 16 public int intProperty; 17 public String stringProperty; 18 19 20 public boolean isBooleanProperty() 21 { 22 return booleanProperty; 23 } 24 25 26 public void setBooleanProperty(boolean booleanProperty) 27 { 28 this.booleanProperty = booleanProperty; 29 } 30 31 32 public int getIntProperty() 33 { 34 return intProperty; 35 } 36 37 38 public void setIntProperty(int intProperty) 39 { 40 this.intProperty = intProperty; 41 } 42 43 44 public String getStringProperty() 45 { 46 return stringProperty; 47 } 48 49 50 public void setStringProperty(String stringProperty) 51 { 52 this.stringProperty = stringProperty; 53 } 54 } 55 | Popular Tags |