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

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

@Entity
final class DoublyInlined {
  @Value Foo foo;

  @Entity(inline = true)
  final static class Foo {
    @Value Bar bar;
  }

  @Entity(inline = true)
  final static class Bar {
    @Value String hello;
  }
}
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.