support binary version in launcher

This commit is contained in:
Eugene Yokota
2013-01-29 16:55:13 -05:00
committed by Mark Harrah
parent e47b8ab578
commit 125727ba83
13 changed files with 165 additions and 293 deletions
@@ -11,6 +11,7 @@ public interface ApplicationID
public String mainClass();
public String[] mainComponents();
public boolean crossVersioned();
public CrossValue crossVersionedValue();
/** Files to add to the application classpath. */
public File[] classpathExtra();
@@ -0,0 +1,6 @@
package xsbti;
public enum CrossValue
{
Disabled, Full, Binary;
}