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.

21 lines
323 B

/**
* 可锁定接口
* 定义了设备的锁定和解锁功能
*/
public interface Lockable {
/**
* 锁定设备
*/
void lock();
/**
* 解锁设备
*/
void unlock();
/**
* 检查设备是否已锁定
* @return 是否已锁定
*/
boolean isLocked();
}