Skip to content

Instantly share code, notes, and snippets.

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