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

@@ -17,15 +17,25 @@
package com.jpexs.decompiler.graph;
import com.jpexs.decompiler.graph.model.ContinueItem;
import java.util.List;
/**
*
* Block interface.
* For example, a block can be a loop, if statement, or a function.
* @author JPEXS
*/
public interface Block {
/**
* Gets all sub continues.
* @return List of continues
*/
public List<ContinueItem> getContinues();
/**
* Gets all sub blocks.
* @return List of blocks
*/
public List<List<GraphTargetItem>> getSubs();
}