Files
json-simple/src/org/json/simple/rope/Node.java
fangyidong d65cf1822b init
2008-11-25 13:25:49 +00:00

13 lines
242 B
Java

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;
}