Skip to content

Instantly share code, notes, and snippets.

@thelittlemango
Created December 8, 2011 01:25
Show Gist options
  • Save thelittlemango/1445665 to your computer and use it in GitHub Desktop.
Save thelittlemango/1445665 to your computer and use it in GitHub Desktop.
Process Class
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