Kenmegne
6 days ago 8cbaa370347e6fc997381cf35d6c295685b90f98
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
 * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
 * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
 */
package com.megatim.dynamicjsonparser.pojo;
 
import com.fasterxml.jackson.databind.JsonNode;
 
/**
 *
 * @author ASUS
 */
public class Node {
    private JsonNode node;
    
    private int index;
 
    public Node(JsonNode node, int index) {
        this.node = node;
        this.index = index;
    }
 
    public JsonNode getNode() {
        return node;
    }
 
    public void setNode(JsonNode node) {
        this.node = node;
    }
 
    public int getIndex() {
        return index;
    }
 
    public void setIndex(int index) {
        this.index = index;
    }
    
    
}