1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the Mozilla Public License Version 2.0.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package cc
.squirreljme
.plugin
.util
;
12 import java
.util
.Collection
;
16 * Execution specification that is self implemented and capable of generateing
17 * arguments accordingly.
21 public interface JavaExecSpecFiller
23 void classpath(Collection
<Object
> __classPath
);
25 Iterable
<String
> getCommandLine();
27 void setMain(String __mainClass
);
29 void setArgs(Collection
<String
> __args
);
31 void setJvmArgs(Collection
<String
> __args
);
33 void systemProperties(Map
<String
, String
> __sysProps
);