1 2 3 4 5 6 7 8 9 10
package jcircus.complexcomms;public class StringAndCounter { String str = ""; int counter = 0; public StringAndCounter () { str = ""; counter = 0; }}