View Javadoc
1   package org.pojomatic.internal;
2   
3   import org.pojomatic.annotations.Property;
4   
5   public class NestParent {
6     @Property
7     int i;
8   
9     static class NestChild {}
10  }