mirror of
https://github.com/stleary/JSON-java.git
synced 2025-08-03 11:25:30 -04:00
16 lines
371 B
Java
16 lines
371 B
Java
package org.json.junit;
|
|
|
|
import java.io.*;
|
|
|
|
/**
|
|
* Used in testing when Bean behavior is needed
|
|
*/
|
|
interface MyBean {
|
|
public Integer getIntKey();
|
|
public Double getDoubleKey();
|
|
public String getStringKey();
|
|
public String getEscapeStringKey();
|
|
public Boolean isTrueKey();
|
|
public Boolean isFalseKey();
|
|
public StringReader getStringReaderKey();
|
|
} |