📄 dvraccreditdata.java
字号:
/*
*/
package vocal.data;
/**
* Use this interface to get and set data for DVR accredit value.
*/
public interface DvrAccreditData extends HostPortData
{
/**
* get data for Camera for Preview checkbox
*/
public boolean getIsPreviewData(int i) throws InvalidRequestException;
/**
* set data for Camera for Preview checkbox
*/
public void setIsPreviewData(boolean data,int i)
throws InvalidRequestException;
/**
* get data for Camera for Control checkbox
*/
public boolean getIsConData(int i) throws InvalidRequestException;
/**
* set data for Camera for Control checkbox
*/
public void setIsConData(boolean data,int i)
throws InvalidRequestException;
/**
* get data for Camera for PlayHistory checkbox
*/
public boolean getIsPlayHistoryData(int i) throws InvalidRequestException;
/**
* set data for Camera for PlayHistory checkbox
*/
public void setIsPlayHistoryData(boolean data,int i)
throws InvalidRequestException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -