new test cases to support bean annotation

This commit is contained in:
John J. Aylward
2018-03-07 14:52:50 -05:00
parent fc881e2631
commit 193a3823b5
6 changed files with 165 additions and 6 deletions
@@ -0,0 +1,11 @@
package org.json.junit.data;
import org.json.JSONPropertyIgnore;
import org.json.JSONPropertyName;
public interface MyBeanCustomNameInterface {
@JSONPropertyName("InterfaceField")
float getSomeFloat();
@JSONPropertyIgnore
int getIgnoredInt();
}