Back to project page bbstalker.
The source code is released under:
GNU General Public License
If you think the Android project bbstalker listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.raegdan.bbstalker; // w w w . j av a 2 s.co m import java.util.ArrayList; import java.util.List; public class Wave implements Cloneable { public List<RegexpField> priorities; public String waveid; public String year; public String format; public String name; public Wave() { priorities = new ArrayList<RegexpField>(); } @SuppressWarnings("unchecked") public Wave clone() throws CloneNotSupportedException { Wave clone = (Wave) super.clone(); clone.priorities = (List<RegexpField>) ((ArrayList<RegexpField>) priorities).clone(); return clone; } }