Fields Summary |
---|
private int | nameName string ID. |
private int | settingsQuestionSettings question ID. |
private int | disableSettingChoiceDisable setting choice string ID. |
private int | runtimeDialogTitleTitle string ID for the permission dialog. |
private int | runtimeQuestionQuestion string ID for the permission dialog. |
private int | runtimeOneshotQuestionOneshot question string ID for the permission dialog. |
private byte | identifiedMaxiumLevelIdentified Third Party domain maxium permission level. |
private byte | identifiedDefaultLevelIdentified Third Party domain default permission level. |
private byte | unidentifiedMaxiumLevelUnidentified Third Party domain maxium permission level. |
private byte | unidentifiedDefaultLevelUnidentified Third Party domain default permission level. |
Methods Summary |
---|
public int | getDisableSettingChoice()Get the disable setting choice string ID.
return disableSettingChoice;
|
public byte | getIdentifiedDefaultLevel()Get the identified Third Party domain default permission level.
return identifiedDefaultLevel;
|
public byte | getIdentifiedMaxiumLevel()Get the identified Third Party domain maxium permission level.
return identifiedMaxiumLevel;
|
public int | getName()Get the name string ID.
return name;
|
public int | getRuntimeDialogTitle()Get the title string ID for the permission dialog.
return runtimeDialogTitle;
|
public int | getRuntimeOneshotQuestion()Get the oneshot question string ID for the permission dialog.
if (runtimeOneshotQuestion == 0) {
return runtimeQuestion;
}
return runtimeOneshotQuestion;
|
public int | getRuntimeQuestion()Get the question string ID for the permission dialog.
return runtimeQuestion;
|
public int | getSettingsQuestion()Get the settings question ID.
return settingsQuestion;
|
public byte | getUnidentifiedDefaultLevel()Get the unidentified Third Party domain default permission level.
return unidentifiedDefaultLevel;
|
public byte | getUnidentifiedMaxiumLevel()Get the unidentified Third Party domain maxium permission level.
return unidentifiedMaxiumLevel;
|