mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-02 11:54:36 +00:00
More documentation.
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user