FreeRDP
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Modules Pages
com.freerdp.freerdpcore.domain.QuickConnectBookmark Class Reference
Inheritance diagram for com.freerdp.freerdpcore.domain.QuickConnectBookmark:
Collaboration diagram for com.freerdp.freerdpcore.domain.QuickConnectBookmark:

Public Member Functions

 QuickConnectBookmark (Parcel parcel)
 
int describeContents ()
 
void writeToParcel (Parcel out, int flags)
 
void writeToSharedPreferences (SharedPreferences sharedPrefs)
 
void readFromSharedPreferences (SharedPreferences sharedPrefs)
 
Object clone ()
 
- Public Member Functions inherited from com.freerdp.freerdpcore.domain.ManualBookmark
 ManualBookmark (Parcel parcel)
 
String getHostname ()
 
void setHostname (String hostname)
 
int getPort ()
 
void setPort (int port)
 
boolean getEnableGatewaySettings ()
 
void setEnableGatewaySettings (boolean enableGatewaySettings)
 
GatewaySettings getGatewaySettings ()
 
void setGatewaySettings (GatewaySettings gatewaySettings)
 
- Public Member Functions inherited from com.freerdp.freerdpcore.domain.BookmarkBase
 BookmarkBase (Parcel parcel)
 
int getType ()
 
long getId ()
 
void setId (long id)
 
String getLabel ()
 
void setLabel (String label)
 
String getUsername ()
 
void setUsername (String username)
 
String getPassword ()
 
void setPassword (String password)
 
String getDomain ()
 
void setDomain (String domain)
 
ScreenSettings getScreenSettings ()
 
void setScreenSettings (ScreenSettings screenSettings)
 
PerformanceFlags getPerformanceFlags ()
 
void setPerformanceFlags (PerformanceFlags performanceFlags)
 
AdvancedSettings getAdvancedSettings ()
 
void setAdvancedSettings (AdvancedSettings advancedSettings)
 
DebugSettings getDebugSettings ()
 
void setDebugSettings (DebugSettings debugSettings)
 
ScreenSettings getActiveScreenSettings ()
 
PerformanceFlags getActivePerformanceFlags ()
 

Static Public Attributes

static final Parcelable.Creator< QuickConnectBookmarkCREATOR
 
- Static Public Attributes inherited from com.freerdp.freerdpcore.domain.ManualBookmark
static final Parcelable.Creator< ManualBookmarkCREATOR
 
- Static Public Attributes inherited from com.freerdp.freerdpcore.domain.BookmarkBase
static final int TYPE_INVALID = -1
 
static final int TYPE_MANUAL = 1
 
static final int TYPE_QUICKCONNECT = 2
 
static final int TYPE_PLACEHOLDER = 3
 
static final int TYPE_CUSTOM_BASE = 1000
 
static final Parcelable.Creator< BookmarkBaseCREATOR
 

Additional Inherited Members

- Protected Attributes inherited from com.freerdp.freerdpcore.domain.BookmarkBase
int type
 

Detailed Description

Definition at line 17 of file QuickConnectBookmark.java.

Constructor & Destructor Documentation

◆ QuickConnectBookmark() [1/2]

com.freerdp.freerdpcore.domain.QuickConnectBookmark.QuickConnectBookmark ( Parcel  parcel)
inline

Definition at line 33 of file QuickConnectBookmark.java.

34 {
35 super(parcel);
36 type = TYPE_QUICKCONNECT;
37 }

◆ QuickConnectBookmark() [2/2]

com.freerdp.freerdpcore.domain.QuickConnectBookmark.QuickConnectBookmark ( )
inline

Definition at line 39 of file QuickConnectBookmark.java.

40 {
41 super();
42 type = TYPE_QUICKCONNECT;
43 }

Member Function Documentation

◆ clone()

Object com.freerdp.freerdpcore.domain.QuickConnectBookmark.clone ( )
inline

Reimplemented from com.freerdp.freerdpcore.domain.ManualBookmark.

Definition at line 66 of file QuickConnectBookmark.java.

67 {
68 return super.clone();
69 }

◆ describeContents()

int com.freerdp.freerdpcore.domain.QuickConnectBookmark.describeContents ( )
inline

Reimplemented from com.freerdp.freerdpcore.domain.ManualBookmark.

Definition at line 45 of file QuickConnectBookmark.java.

46 {
47 return 0;
48 }

◆ readFromSharedPreferences()

void com.freerdp.freerdpcore.domain.QuickConnectBookmark.readFromSharedPreferences ( SharedPreferences  sharedPrefs)
inline

Reimplemented from com.freerdp.freerdpcore.domain.ManualBookmark.

Definition at line 60 of file QuickConnectBookmark.java.

61 {
62 super.readFromSharedPreferences(sharedPrefs);
63 }

◆ writeToParcel()

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

Reimplemented from com.freerdp.freerdpcore.domain.ManualBookmark.

Definition at line 50 of file QuickConnectBookmark.java.

51 {
52 super.writeToParcel(out, flags);
53 }

◆ writeToSharedPreferences()

void com.freerdp.freerdpcore.domain.QuickConnectBookmark.writeToSharedPreferences ( SharedPreferences  sharedPrefs)
inline

Reimplemented from com.freerdp.freerdpcore.domain.ManualBookmark.

Definition at line 55 of file QuickConnectBookmark.java.

56 {
57 super.writeToSharedPreferences(sharedPrefs);
58 }

Field Documentation

◆ CREATOR

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

Definition at line 20 of file QuickConnectBookmark.java.

21 {
22 public QuickConnectBookmark createFromParcel(Parcel in)
23 {
24 return new QuickConnectBookmark(in);
25 }
26
27 @Override public QuickConnectBookmark[] newArray(int size)
28 {
29 return new QuickConnectBookmark[size];
30 }
31 };

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