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