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,23 +19,43 @@ package com.jpexs.decompiler.graph;
import java.util.List;
/**
*
* Exception when part of the graph is changed.
* @author JPEXS
*/
public class GraphPartChangeException extends Exception {
/**
* IP
*/
private final int ip;
/**
* Output
*/
private final List<GraphTargetItem> output;
/**
* Constructs a new GraphPartChangeException
* @param output Output
* @param ip IP
*/
public GraphPartChangeException(List<GraphTargetItem> output, int ip) {
this.output = output;
this.ip = ip;
}
/**
* Gets the IP
* @return IP
*/
public int getIp() {
return ip;
}
/**
* Gets the output
* @return Output
*/
public List<GraphTargetItem> getOutput() {
return output;
}