diff options
| author | Paul Buetow <paul@buetow.org> | 2009-02-18 23:01:21 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2009-02-18 23:01:21 +0000 |
| commit | 89c679eb813611a2ede208b4c8e27c7f596b3be7 (patch) | |
| tree | f44c19435286e78b9e8002990e1b55183a4fbc49 /sources/shared/MyVector.java | |
| parent | 177f346a9bbe455dc12fd26dfa2c586585c28c1e (diff) | |
added copyright to header
Diffstat (limited to 'sources/shared/MyVector.java')
| -rw-r--r-- | sources/shared/MyVector.java | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/sources/shared/MyVector.java b/sources/shared/MyVector.java index 9a76625..3c98d72 100644 --- a/sources/shared/MyVector.java +++ b/sources/shared/MyVector.java @@ -1,3 +1,7 @@ +/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow + * http://netcalendar.buetow.org - netcalendar@dev.buetow.org + */ + package shared; import java.util.Enumeration; @@ -9,15 +13,15 @@ import java.util.Vector; * */ public class MyVector extends Vector { - private static final long serialVersionUID = 1L; + private static final long serialVersionUID = 1L; - /** - * This method appends a vector at the end. - * @param vecAppend Specifies the vector to be appended. - */ - public void appendVector(Vector vecAppend) { - Enumeration enumAppend = vecAppend.elements(); - while (enumAppend.hasMoreElements()) - this.add(enumAppend.nextElement()); - } + /** + * This method appends a vector at the end. + * @param vecAppend Specifies the vector to be appended. + */ + public void appendVector(Vector vecAppend) { + Enumeration enumAppend = vecAppend.elements(); + while (enumAppend.hasMoreElements()) + this.add(enumAppend.nextElement()); + } } |
