Created
December 8, 2011 01:25
-
-
Save thelittlemango/1445665 to your computer and use it in GitHub Desktop.
Process Class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.*; | |
public class Process { | |
private ArrayList myArrayList2; | |
private int[] myArray; | |
private int size; | |
private String x; | |
public Process (String x, int size){ | |
myArray = new int[size]; | |
myArrayList2=new ArrayList(); | |
this.x = x; | |
}//end constructor | |
}//end process |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment