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

Public Member Functions

 PlaceholderBookmark (Parcel parcel)
 
String getName ()
 
void setName (String name)
 
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.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< PlaceholderBookmarkCREATOR
 
- 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 PlaceholderBookmark.java.

Constructor & Destructor Documentation

◆ PlaceholderBookmark() [1/2]

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

Definition at line 34 of file PlaceholderBookmark.java.

35 {
36 super(parcel);
37 type = TYPE_PLACEHOLDER;
38 name = parcel.readString();
39 }

◆ PlaceholderBookmark() [2/2]

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

Definition at line 41 of file PlaceholderBookmark.java.

42 {
43 super();
44 type = TYPE_PLACEHOLDER;
45 name = "";
46 }

Member Function Documentation

◆ clone()

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

Reimplemented from com.freerdp.freerdpcore.domain.BookmarkBase.

Definition at line 80 of file PlaceholderBookmark.java.

81 {
82 return super.clone();
83 }

◆ describeContents()

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

Reimplemented from com.freerdp.freerdpcore.domain.BookmarkBase.

Definition at line 58 of file PlaceholderBookmark.java.

59 {
60 return 0;
61 }

◆ getName()

String com.freerdp.freerdpcore.domain.PlaceholderBookmark.getName ( )
inline

Definition at line 48 of file PlaceholderBookmark.java.

49 {
50 return name;
51 }

◆ readFromSharedPreferences()

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

Reimplemented from com.freerdp.freerdpcore.domain.BookmarkBase.

Definition at line 74 of file PlaceholderBookmark.java.

75 {
76 super.readFromSharedPreferences(sharedPrefs);
77 }

◆ setName()

void com.freerdp.freerdpcore.domain.PlaceholderBookmark.setName ( String  name)
inline

Definition at line 53 of file PlaceholderBookmark.java.

54 {
55 this.name = name;
56 }

◆ writeToParcel()

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

Reimplemented from com.freerdp.freerdpcore.domain.BookmarkBase.

Definition at line 63 of file PlaceholderBookmark.java.

64 {
65 super.writeToParcel(out, flags);
66 out.writeString(name);
67 }

◆ writeToSharedPreferences()

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

Reimplemented from com.freerdp.freerdpcore.domain.BookmarkBase.

Definition at line 69 of file PlaceholderBookmark.java.

70 {
71 super.writeToSharedPreferences(sharedPrefs);
72 }

Field Documentation

◆ CREATOR

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

Definition at line 20 of file PlaceholderBookmark.java.

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

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