moving package, adding Table to Android, other data fixes

This commit is contained in:
benfry
2012-04-03 00:33:01 +00:00
parent fc6d4d49c7
commit 03de74c7da
5 changed files with 2654 additions and 26 deletions
+7 -10
View File
@@ -46,7 +46,6 @@ import android.text.format.Time;
import android.util.*;
import android.view.*;
import android.widget.*;
import android.widget.RelativeLayout;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
@@ -3838,22 +3837,20 @@ public class PApplet extends Activity implements PConstants, Runnable {
}
//////////////////////////////////////////////////////////////
// NODE I/O (XML, JSON, etc.)
// DATA I/O
public XML loadNode(String filename) {
public XML loadXML(String filename) {
return new XML(this, filename);
}
// public PData loadData(String filename) {
// if (filename.toLowerCase().endsWith(".json")) {
// return new PData(this, filename);
// } else {
// throw new RuntimeException("filename used for loadNode() must end with XML");
// }
// }
public Table loadTable(String filename) {
return new Table(this, filename);
}
File diff suppressed because it is too large Load Diff
+4 -4
View File
@@ -6,14 +6,16 @@ X consider switch to android 2.2 as the minimum
andres
A GL2 specific code in Processing 2.0a5 break P3D on GLES2 hardware
A http://code.google.com/p/processing/issues/detail?id=1029
_ Android OPENGL renderer + JAVA2D PGraphics results in PTexture exception
_ http://code.google.com/p/processing/issues/detail?id=1019
X OpenGL/ES requires precision specifier on float types
X http://code.google.com/p/processing/issues/detail?id=1035
_ Android OPENGL renderer + JAVA2D PGraphics results in PTexture exception
_ http://code.google.com/p/processing/issues/detail?id=1019
earlier
X remove unnecessary processing.xml.* code from android-core
X http://code.google.com/p/processing/issues/detail?id=214
X remove unnecessary processing.xml.* code from android-core
X http://code.google.com/p/processing/issues/detail?id=214
_ Android mode is broken on Windows in Processing 2.0a5
@@ -374,8 +376,6 @@ DL _ http://code.google.com/p/processing/issues/detail?id=244
EH _ separate "PApplet" into separate View and Activity classes
EH _ http://code.google.com/p/processing/issues/detail?id=212
EM _ remove unnecessary processing.xml.* code from android-core
EM _ http://code.google.com/p/processing/issues/detail?id=214
EM _ implement size() and createGraphics() for arbitrary renderers
EM _ http://code.google.com/p/processing/issues/detail?id=241