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

@@ -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() {
}
}