More documentation.

This commit is contained in:
Jindra Petřík
2024-08-06 06:17:00 +02:00
parent 68954e714d
commit b57e38e387
286 changed files with 11752 additions and 3576 deletions

View File

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