Skip to content

Instantly share code, notes, and snippets.

@iugonet
Last active August 29, 2015 14:17
Show Gist options
  • Save iugonet/6c6a0a14ee867f5b3ca2 to your computer and use it in GitHub Desktop.
Save iugonet/6c6a0a14ee867f5b3ca2 to your computer and use it in GitHub Desktop.
import java.util.ArrayList;
class Iri2001 extends ExternalModel {
ArrayList<String> arrayList;
Iri2001(){
arrayList = new ArrayList<String>();
command = getClass().getSimpleName()+getSuffix();
arrayList.add(command);
}
run(){
arrayList.add("example.txt");
this.exec(arrayList);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment