mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-11 03:32:32 +00:00
More documentation.
This commit is contained in:
@@ -20,17 +20,24 @@ import java.util.Collection;
|
||||
import java.util.LinkedList;
|
||||
|
||||
/**
|
||||
*
|
||||
* Queue of GraphPart objects.
|
||||
* @author JPEXS
|
||||
*/
|
||||
public class GraphPartQueue extends LinkedList<GraphPart> {
|
||||
|
||||
public Loop currentLoop;
|
||||
|
||||
/**
|
||||
* Constructs a GraphPartQueue containing the elements of the specified collection.
|
||||
* @param c
|
||||
*/
|
||||
public GraphPartQueue(Collection<? extends GraphPart> c) {
|
||||
super(c);
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructs an empty GraphPartQueue.
|
||||
*/
|
||||
public GraphPartQueue() {
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user