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; // www . j a v a 2s. c om public class RegexpField implements Cloneable { public String regexp; public String field; public Integer priority; public RegexpField clone() throws CloneNotSupportedException { RegexpField clone = (RegexpField) super.clone(); return clone; } }