FreeRDP
Loading...
Searching...
No Matches
com.freerdp.freerdpcore.domain.BookmarkBase.DebugSettings Class Reference
Inheritance diagram for com.freerdp.freerdpcore.domain.BookmarkBase.DebugSettings:
Collaboration diagram for com.freerdp.freerdpcore.domain.BookmarkBase.DebugSettings:

Public Member Functions

 DebugSettings (@NonNull Parcel parcel)
 
String getDebugLevel ()
 
void setDebugLevel (@NonNull String debug)
 
boolean getAsyncUpdate ()
 
void setAsyncUpdate (boolean enabled)
 
boolean getAsyncChannel ()
 
void setAsyncChannel (boolean enabled)
 
int describeContents ()
 
void writeToParcel (@NonNull Parcel out, int flags)
 

Static Public Attributes

static final Parcelable.Creator< DebugSettingsCREATOR
 

Detailed Description

Definition at line 824 of file BookmarkBase.java.

Constructor & Destructor Documentation

◆ DebugSettings() [1/2]

com.freerdp.freerdpcore.domain.BookmarkBase.DebugSettings.DebugSettings ( )
inline

Definition at line 844 of file BookmarkBase.java.

845 {
846 }

◆ 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 }

Member Function Documentation

◆ describeContents()

int com.freerdp.freerdpcore.domain.BookmarkBase.DebugSettings.describeContents ( )
inline

Definition at line 903 of file BookmarkBase.java.

904 {
905 return 0;
906 }

◆ getAsyncChannel()

boolean com.freerdp.freerdpcore.domain.BookmarkBase.DebugSettings.getAsyncChannel ( )
inline

Definition at line 893 of file BookmarkBase.java.

894 {
895 return asyncChannel;
896 }

◆ getAsyncUpdate()

boolean com.freerdp.freerdpcore.domain.BookmarkBase.DebugSettings.getAsyncUpdate ( )
inline

Definition at line 883 of file BookmarkBase.java.

884 {
885 return asyncUpdate;
886 }

◆ getDebugLevel()

String com.freerdp.freerdpcore.domain.BookmarkBase.DebugSettings.getDebugLevel ( )
inline

Definition at line 872 of file BookmarkBase.java.

873 {
874 validate();
875 return debug;
876 }

◆ setAsyncChannel()

void com.freerdp.freerdpcore.domain.BookmarkBase.DebugSettings.setAsyncChannel ( boolean  enabled)
inline

Definition at line 898 of file BookmarkBase.java.

899 {
900 asyncChannel = enabled;
901 }

◆ setAsyncUpdate()

void com.freerdp.freerdpcore.domain.BookmarkBase.DebugSettings.setAsyncUpdate ( boolean  enabled)
inline

Definition at line 888 of file BookmarkBase.java.

889 {
890 asyncUpdate = enabled;
891 }

◆ setDebugLevel()

void com.freerdp.freerdpcore.domain.BookmarkBase.DebugSettings.setDebugLevel ( @NonNull String  debug)
inline

Definition at line 878 of file BookmarkBase.java.

879 {
880 this.debug = debug;
881 }

◆ 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 }

Field Documentation

◆ 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);
}
@NonNull @Override public DebugSettings[] newArray(int size)
{
return new DebugSettings[size];
}
}

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: