mirror of
https://github.com/stleary/JSON-java.git
synced 2026-05-18 00:00:50 -04:00
11 lines
262 B
Java
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();
|
|
} |