Package com.zerog.ia.auto.project
Class WindowsPlatform
- java.lang.Object
-
- com.zerog.ia.auto.project.WindowsPlatform
-
public final class WindowsPlatform extends java.lang.Object
The Windows platform specific settings, like VM search settings and installer launcher type.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
getUseWindowsConsoleLauncher()
Whether or not the Windows installer launcher should support console (a prompt dialog is displayed).WinVistaExecLevel
getWindowsVistaExecLevel()
The Windows Vista execution level for the installer's launcher.java.util.Vector<java.lang.String>
getWindowsVmSearchExePatterns()
TheVector
of Java executable patterns the installer should use when trying to identify a VM on the Windows platform.java.util.Vector<JVMSearchPath>
getWindowsVmSearchPaths()
The parameters for the VM search performed by the installer when searching for a valid VM on the Windows platform.void
setUseWindowsConsoleLauncher(boolean UseWindowsConsoleLauncher)
Whether or not the Windows installer launcher should support console (a prompt dialog is displayed).void
setWindowsVistaExecLevel(WinVistaExecLevel WindowsVistaExecLevel)
The Windows Vista execution level for the installer's launcher.void
setWindowsVmSearchExePatterns(java.util.Vector<java.lang.String> windowsVmSearchExePatterns)
TheVector
of Java executable patterns the installer should use when trying to identify a VM on the Windows platform.void
setWindowsVmSearchPaths(java.util.Vector<JVMSearchPath> windowsVmSearchPaths)
The parameters for the VM search performed by the installer when searching for a valid VM on the Windows platform.
-
-
-
Method Detail
-
setWindowsVmSearchPaths
public void setWindowsVmSearchPaths(java.util.Vector<JVMSearchPath> windowsVmSearchPaths)
The parameters for the VM search performed by the installer when searching for a valid VM on the Windows platform.
-
getWindowsVmSearchPaths
public java.util.Vector<JVMSearchPath> getWindowsVmSearchPaths()
The parameters for the VM search performed by the installer when searching for a valid VM on the Windows platform.
-
getWindowsVmSearchExePatterns
public java.util.Vector<java.lang.String> getWindowsVmSearchExePatterns()
TheVector
of Java executable patterns the installer should use when trying to identify a VM on the Windows platform.
The default Windows Java executable patterns are "java.exe", "bin\java.exe" and "jre\bin\java.exe".- See Also:
getWindowsVmSearchPaths()
-
setWindowsVmSearchExePatterns
public void setWindowsVmSearchExePatterns(java.util.Vector<java.lang.String> windowsVmSearchExePatterns)
TheVector
of Java executable patterns the installer should use when trying to identify a VM on the Windows platform.
The default Windows Java executable patterns are "java.exe", "bin\java.exe" and "jre\bin\java.exe".- See Also:
setWindowsVmSearchPaths(Vector)
-
getUseWindowsConsoleLauncher
public boolean getUseWindowsConsoleLauncher()
Whether or not the Windows installer launcher should support console (a prompt dialog is displayed).
-
setUseWindowsConsoleLauncher
public void setUseWindowsConsoleLauncher(boolean UseWindowsConsoleLauncher)
Whether or not the Windows installer launcher should support console (a prompt dialog is displayed).
-
getWindowsVistaExecLevel
public WinVistaExecLevel getWindowsVistaExecLevel()
The Windows Vista execution level for the installer's launcher.
-
setWindowsVistaExecLevel
public void setWindowsVistaExecLevel(WinVistaExecLevel WindowsVistaExecLevel)
The Windows Vista execution level for the installer's launcher.
-
-