This commit is contained in:
stleary
2016-01-03 21:39:44 -06:00
parent ace08f1944
commit 706d898648
22 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
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();
}