Skip to content

Instantly share code, notes, and snippets.

@iugonet
Last active August 29, 2015 14:17
Show Gist options
  • Save iugonet/2c32c179f2ad0d3e9fe8 to your computer and use it in GitHub Desktop.
Save iugonet/2c32c179f2ad0d3e9fe8 to your computer and use it in GitHub Desktop.
import java.util.ArrayList;
class Igrf12 extends ExternalModel {
ArrayList<String> arrayList;
Igrf12(){
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