All Packages Class Hierarchy This Package Previous Next Index
Class com.sun.install.products.ProductLog
java.lang.Object
|
+----com.sun.install.products.ProductLog
- public class ProductLog
- extends Object
The ProductLog is a class that keeps track of what products/components were
installed during a specific run of the installer. This class is used to prevent multiple
installations of shared components/products.
-
ProductLog()
-
-
checkInstallLog(String, String)
- Returns true if the specified product component has been installed.
-
logInstall(String, String)
- Add/update the component list for the specified product.
ProductLog
public ProductLog()
logInstall
public static void logInstall(String product,
String component)
- Add/update the component list for the specified product.
- Parameters:
- product - The product to modify.
- component - The component to add to the product vector.
checkInstallLog
public static boolean checkInstallLog(String product,
String component)
- Returns true if the specified product component has been installed.
- Parameters:
- product - The product to check.
- component - The product component to check for.
- Returns:
- true if the specified product component has been installed, false otherwise.
All Packages Class Hierarchy This Package Previous Next Index