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.


Constructor Index

 o ProductLog()

Method Index

 o checkInstallLog(String, String)
Returns true if the specified product component has been installed.
 o logInstall(String, String)
Add/update the component list for the specified product.

Constructors

 o ProductLog
 public ProductLog()

Methods

 o 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.
 o 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