Files
Yasuhiro KIMURA 9678929700 Update to 18.1.40
2020-07-24 01:10:28 +09:00

23 lines
528 B
Java

/*-
* Copyright (c) 2001, 2020 Oracle and/or its affiliates. All rights reserved.
*
* See the file LICENSE for license information.
*
* $Id$
*/
package db_gui;
/**
* Used by background Tasks to re-enable tabs. The tabs have to be re-enabled
* in the JavaFX thread, which is why a Runnable class has to be used to do it.
*/
public class EnableRunnable implements Runnable {
@Override
public void run() {
BDBState state = BDBState.getBDBState();
state.enable();
}
}