Definition at line 824 of file BookmarkBase.java.
◆ DebugSettings() [1/2]
| com.freerdp.freerdpcore.domain.BookmarkBase.DebugSettings.DebugSettings |
( |
| ) |
|
|
inline |
◆ DebugSettings() [2/2]
| com.freerdp.freerdpcore.domain.BookmarkBase.DebugSettings.DebugSettings |
( |
@NonNull Parcel |
parcel | ) |
|
|
inline |
Definition at line 849 of file BookmarkBase.java.
850 {
851 asyncChannel = parcel.readBoolean();
852 asyncTransport = parcel.readBoolean();
853 asyncUpdate = parcel.readBoolean();
854 debug = Objects.requireNonNull(parcel.readString());
855 }
◆ describeContents()
| int com.freerdp.freerdpcore.domain.BookmarkBase.DebugSettings.describeContents |
( |
| ) |
|
|
inline |
◆ getAsyncChannel()
| boolean com.freerdp.freerdpcore.domain.BookmarkBase.DebugSettings.getAsyncChannel |
( |
| ) |
|
|
inline |
◆ getAsyncUpdate()
| boolean com.freerdp.freerdpcore.domain.BookmarkBase.DebugSettings.getAsyncUpdate |
( |
| ) |
|
|
inline |
◆ getDebugLevel()
| String com.freerdp.freerdpcore.domain.BookmarkBase.DebugSettings.getDebugLevel |
( |
| ) |
|
|
inline |
◆ setAsyncChannel()
| void com.freerdp.freerdpcore.domain.BookmarkBase.DebugSettings.setAsyncChannel |
( |
boolean |
enabled | ) |
|
|
inline |
◆ setAsyncUpdate()
| void com.freerdp.freerdpcore.domain.BookmarkBase.DebugSettings.setAsyncUpdate |
( |
boolean |
enabled | ) |
|
|
inline |
◆ setDebugLevel()
| void com.freerdp.freerdpcore.domain.BookmarkBase.DebugSettings.setDebugLevel |
( |
@NonNull String |
debug | ) |
|
|
inline |
◆ writeToParcel()
| void com.freerdp.freerdpcore.domain.BookmarkBase.DebugSettings.writeToParcel |
( |
@NonNull Parcel |
out, |
|
|
int |
flags |
|
) |
| |
|
inline |
Definition at line 908 of file BookmarkBase.java.
909 {
910 out.writeBoolean(asyncChannel);
911 out.writeBoolean(asyncTransport);
912 out.writeBoolean(asyncUpdate);
913 out.writeString(debug);
914 }
◆ CREATOR
| final Parcelable.Creator<DebugSettings> com.freerdp.freerdpcore.domain.BookmarkBase.DebugSettings.CREATOR |
|
static |
Initial value:=
new Parcelable.Creator<DebugSettings>() {
@NonNull public DebugSettings createFromParcel(Parcel in)
{
return new DebugSettings(in);
}
{
}
}
Definition at line 826 of file BookmarkBase.java.
827 {
828 @NonNull public DebugSettings createFromParcel(Parcel in)
829 {
830 return new DebugSettings(in);
831 }
832
833 @NonNull @Override public DebugSettings[] newArray(int size)
834 {
835 return new DebugSettings[size];
836 }
837 };
The documentation for this class was generated from the following file: