Files
JSON-java/src/test/java/org/json/junit/data/MyBeanCustomNameInterface.java
T
2018-03-11 16:56:07 -04:00

11 lines
262 B
Java

package org.json.junit.data;
import org.json.JSONPropertyIgnore;
import org.json.JSONPropertyName;
public interface MyBeanCustomNameInterface {
@JSONPropertyName("InterfaceField")
float getSomeFloat();
@JSONPropertyIgnore
int getIgnoredInt();
}