mirror of
https://github.com/ethauvin/JSON-java.git
synced 2025-06-17 07:50:52 -07:00
16 lines
No EOL
371 B
Java
16 lines
No EOL
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();
|
|
} |