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 (Parcel parcel)
 
String getDebugLevel ()
 
void setDebugLevel (String debug)
 
boolean getAsyncUpdate ()
 
void setAsyncUpdate (boolean enabled)
 
boolean getAsyncChannel ()
 
void setAsyncChannel (boolean enabled)
 
int describeContents ()
 
void writeToParcel (Parcel out, int flags)
 

Static Public Attributes

static final Parcelable.Creator< DebugSettingsCREATOR
 

Detailed Description

Definition at line 739 of file BookmarkBase.java.

Constructor & Destructor Documentation

◆ DebugSettings() [1/2]

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

Definition at line 759 of file BookmarkBase.java.

760 {
761 init();
762 }

◆ DebugSettings() [2/2]

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

Definition at line 765 of file BookmarkBase.java.

766 {
767 asyncChannel = parcel.readInt() == 1;
768 asyncTransport = parcel.readInt() == 1;
769 asyncUpdate = parcel.readInt() == 1;
770 debug = parcel.readString();
771 }

Member Function Documentation

◆ describeContents()

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

Definition at line 827 of file BookmarkBase.java.

828 {
829 return 0;
830 }

◆ getAsyncChannel()

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

Definition at line 817 of file BookmarkBase.java.

818 {
819 return asyncChannel;
820 }

◆ getAsyncUpdate()

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

Definition at line 807 of file BookmarkBase.java.

808 {
809 return asyncUpdate;
810 }

◆ getDebugLevel()

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

Definition at line 796 of file BookmarkBase.java.

797 {
798 validate();
799 return debug;
800 }

◆ setAsyncChannel()

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

Definition at line 822 of file BookmarkBase.java.

823 {
824 asyncChannel = enabled;
825 }

◆ setAsyncUpdate()

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

Definition at line 812 of file BookmarkBase.java.

813 {
814 asyncUpdate = enabled;
815 }

◆ setDebugLevel()

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

Definition at line 802 of file BookmarkBase.java.

803 {
804 this.debug = debug;
805 }

◆ writeToParcel()

void com.freerdp.freerdpcore.domain.BookmarkBase.DebugSettings.writeToParcel ( Parcel  out,
int  flags 
)
inline

Definition at line 832 of file BookmarkBase.java.

833 {
834 out.writeInt(asyncChannel ? 1 : 0);
835 out.writeInt(asyncTransport ? 1 : 0);
836 out.writeInt(asyncUpdate ? 1 : 0);
837 out.writeString(debug);
838 }

Field Documentation

◆ CREATOR

final Parcelable.Creator<DebugSettings> com.freerdp.freerdpcore.domain.BookmarkBase.DebugSettings.CREATOR
static
Initial value:
=
new Parcelable.Creator<DebugSettings>() {
public DebugSettings createFromParcel(Parcel in)
{
return new DebugSettings(in);
}
@Override public DebugSettings[] newArray(int size)
{
return new DebugSettings[size];
}
}

Definition at line 742 of file BookmarkBase.java.

743 {
744 public DebugSettings createFromParcel(Parcel in)
745 {
746 return new DebugSettings(in);
747 }
748
749 @Override public DebugSettings[] newArray(int size)
750 {
751 return new DebugSettings[size];
752 }
753 };

The documentation for this class was generated from the following file: