diff options
Diffstat (limited to 'sources/utils/VSPriorityQueue.java')
| -rw-r--r-- | sources/utils/VSPriorityQueue.java | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sources/utils/VSPriorityQueue.java b/sources/utils/VSPriorityQueue.java index dd46a6e..7458a54 100644 --- a/sources/utils/VSPriorityQueue.java +++ b/sources/utils/VSPriorityQueue.java @@ -1,8 +1,24 @@ +/* + * VS is (c) 2008 by Paul C. Buetow + * vs@dev.buetow.org + */ package utils; import java.util.PriorityQueue; +// TODO: Auto-generated Javadoc +/** + * The Class VSPriorityQueue. + */ public final class VSPriorityQueue<T> extends PriorityQueue<T> { + + /** + * Gets the. + * + * @param index the index + * + * @return the t + */ public T get(int index) { int i = 0; |
