GetSetCollidingWithField.java :  » JSON » jsonmarshaller » com » twolattes » json » Java Open Source

Java Open Source » JSON » jsonmarshaller 
jsonmarshaller » com » twolattes » json » GetSetCollidingWithField.java
package com.twolattes.json;

@Entity
public class GetSetCollidingWithField {
  @Value
  boolean fooBar;

  @Value
  public boolean isFooBar() {
    return fooBar;
  }

  @Value
  public void setFooBar(boolean fooBar) {
    this.fooBar = fooBar;
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.