mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-02 20:04:37 +00:00
More documentation.
This commit is contained in:
@@ -19,15 +19,26 @@ package com.jpexs.decompiler.graph;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
*
|
||||
* Graph source item with a position.
|
||||
* @author JPEXS
|
||||
*/
|
||||
public class GraphSourceItemPos implements Serializable {
|
||||
|
||||
/**
|
||||
* Source item
|
||||
*/
|
||||
public GraphSourceItem item;
|
||||
|
||||
/**
|
||||
* Position
|
||||
*/
|
||||
public int pos;
|
||||
|
||||
/**
|
||||
* Constructs a GraphSourceItemPos
|
||||
* @param item Source item
|
||||
* @param pos Position
|
||||
*/
|
||||
public GraphSourceItemPos(GraphSourceItem item, int pos) {
|
||||
this.item = item;
|
||||
this.pos = pos;
|
||||
|
||||
Reference in New Issue
Block a user