You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/**
|
|
* 可锁定接口
|
|
* 定义了所有可锁定设备必须实现的锁定功能
|
|
*/
|
|
public interface Lockable {
|
|
/**
|
|
* 锁定设备
|
|
*/
|
|
void lock();
|
|
|
|
/**
|
|
* 解锁设备
|
|
*/
|
|
void unlock();
|
|
|
|
/**
|
|
* 检查设备是否已锁定
|
|
* @return 是否锁定
|
|
*/
|
|
boolean isLocked();
|
|
} |