This commit is contained in:
fangyidong
2008-11-25 13:25:49 +00:00
commit d65cf1822b
24 changed files with 2044 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package org.json.simple.rope;
class Node {
static final int TYPE_STR = 0;
static final int TYPE_CH = 1;
static final int TYPE_UNKNOWN = -1;
int type = TYPE_UNKNOWN;
Node next;
char content_ch;
String content_str;
}