Definition at line 739 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 |
( |
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 }
◆ 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 |
( |
String |
debug | ) |
|
|
inline |
◆ 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 }
◆ 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);
}
{
}
}
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: