21 lines
305 B
Java
21 lines
305 B
Java
|
/*
|
||
|
* To change this template, choose Tools | Templates
|
||
|
* and open the template in the editor.
|
||
|
*/
|
||
|
|
||
|
package eric.JSprogram;
|
||
|
|
||
|
import java.util.ArrayList;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author erichake
|
||
|
*/
|
||
|
public class ScriptItemsArray extends ArrayList<ScriptItem>{
|
||
|
|
||
|
public ScriptItemsArray(){
|
||
|
super();
|
||
|
}
|
||
|
|
||
|
}
|