Package com.zerog.ia.api.pub
Interface InstallerAccess
-
- All Known Implementing Classes:
InstallerProxy
public interface InstallerAccess
InstallerAccess allows data serialization from the installer to the uninstaller.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.io.DataOutput
getLogOutput()
This method is returns an instance that implements java.io.DataOutput.java.lang.String
getLogOutputAsString()
Returns theDataOutput
as aString
.
-
-
-
Method Detail
-
getLogOutput
java.io.DataOutput getLogOutput()
This method is returns an instance that implements java.io.DataOutput. Information written to that instance will be available at uninstall-time from the DataInput returned by getLogInput(). This is the best way to get specific data from the installer to the uninstaller.
-
getLogOutputAsString
java.lang.String getLogOutputAsString()
Returns theDataOutput
as aString
.
-
-