mirror of
https://github.com/fangyidong/json-simple.git
synced 2025-12-09 00:38:38 +03:00
init
This commit is contained in:
12
src/org/json/simple/rope/Node.java
Normal file
12
src/org/json/simple/rope/Node.java
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user