| java.lang.Object docrobot.RobotUtilities
RobotUtilities | public class RobotUtilities (Code) | | |
Method Summary | |
public static void | makePreviewable(Component comp, Map<Component, Boolean> dbSnapshot) Makes the specified component and all its descendants previewable.
Parameters: comp - Component. Parameters: dbSnapshot - The "snapshot" map that will contain the originaldouble-buffer status of the specified component and all itsdescendants. | public static void | restorePreviewable(Component comp, Map<Component, Boolean> dbSnapshot) Restores the regular (non-previewable) status of the specified component
and all its descendants.
Parameters: comp - Component. Parameters: dbSnapshot - The "snapshot" map that contains the original double-bufferstatus of the specified component and all its descendants. |
makePreviewable | public static void makePreviewable(Component comp, Map<Component, Boolean> dbSnapshot)(Code) | | Makes the specified component and all its descendants previewable.
Parameters: comp - Component. Parameters: dbSnapshot - The "snapshot" map that will contain the originaldouble-buffer status of the specified component and all itsdescendants. Key is JComponent, value isBoolean. |
restorePreviewable | public static void restorePreviewable(Component comp, Map<Component, Boolean> dbSnapshot)(Code) | | Restores the regular (non-previewable) status of the specified component
and all its descendants.
Parameters: comp - Component. Parameters: dbSnapshot - The "snapshot" map that contains the original double-bufferstatus of the specified component and all its descendants. Keyis JComponent, value is Boolean. |
|
|