FreeRDP
com.freerdp.freerdpcore.domain.BookmarkBase Class Reference
Inheritance diagram for com.freerdp.freerdpcore.domain.BookmarkBase:
Collaboration diagram for com.freerdp.freerdpcore.domain.BookmarkBase:

Data Structures

class  AdvancedSettings
 
class  DebugSettings
 
class  PerformanceFlags
 
class  ScreenSettings
 

Public Member Functions

 BookmarkBase (Parcel parcel)
 
 BookmarkBase ()
 
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 ()
 
int describeContents ()
 
void writeToParcel (Parcel out, int flags)
 
void writeToSharedPreferences (SharedPreferences sharedPrefs)
 
void readFromSharedPreferences (SharedPreferences sharedPrefs)
 
Object clone ()
 

Static Public Attributes

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
 

Protected Attributes

int type
 

Constructor & Destructor Documentation

◆ BookmarkBase() [1/2]

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

◆ BookmarkBase() [2/2]

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

Member Function Documentation

◆ clone()

◆ describeContents()

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

◆ getActivePerformanceFlags()

PerformanceFlags com.freerdp.freerdpcore.domain.BookmarkBase.getActivePerformanceFlags ( )
inline
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getActiveScreenSettings()

ScreenSettings com.freerdp.freerdpcore.domain.BookmarkBase.getActiveScreenSettings ( )
inline
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getAdvancedSettings()

AdvancedSettings com.freerdp.freerdpcore.domain.BookmarkBase.getAdvancedSettings ( )
inline
Here is the caller graph for this function:

◆ getDebugSettings()

DebugSettings com.freerdp.freerdpcore.domain.BookmarkBase.getDebugSettings ( )
inline
Here is the caller graph for this function:

◆ getDomain()

String com.freerdp.freerdpcore.domain.BookmarkBase.getDomain ( )
inline
Here is the caller graph for this function:

◆ getId()

long com.freerdp.freerdpcore.domain.BookmarkBase.getId ( )
inline
Here is the caller graph for this function:

◆ getLabel()

String com.freerdp.freerdpcore.domain.BookmarkBase.getLabel ( )
inline
Here is the caller graph for this function:

◆ getPassword()

String com.freerdp.freerdpcore.domain.BookmarkBase.getPassword ( )
inline
Here is the caller graph for this function:

◆ getPerformanceFlags()

PerformanceFlags com.freerdp.freerdpcore.domain.BookmarkBase.getPerformanceFlags ( )
inline
Here is the caller graph for this function:

◆ getScreenSettings()

ScreenSettings com.freerdp.freerdpcore.domain.BookmarkBase.getScreenSettings ( )
inline
Here is the caller graph for this function:

◆ getType()

int com.freerdp.freerdpcore.domain.BookmarkBase.getType ( )
inline
Here is the caller graph for this function:

◆ getUsername()

String com.freerdp.freerdpcore.domain.BookmarkBase.getUsername ( )
inline
Here is the caller graph for this function:

◆ readFromSharedPreferences()

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

◆ setAdvancedSettings()

void com.freerdp.freerdpcore.domain.BookmarkBase.setAdvancedSettings ( AdvancedSettings  advancedSettings)
inline

◆ setDebugSettings()

void com.freerdp.freerdpcore.domain.BookmarkBase.setDebugSettings ( DebugSettings  debugSettings)
inline

◆ setDomain()

void com.freerdp.freerdpcore.domain.BookmarkBase.setDomain ( String  domain)
inline
Here is the caller graph for this function:

◆ setId()

void com.freerdp.freerdpcore.domain.BookmarkBase.setId ( long  id)
inline
Here is the caller graph for this function:

◆ setLabel()

void com.freerdp.freerdpcore.domain.BookmarkBase.setLabel ( String  label)
inline
Here is the caller graph for this function:

◆ setPassword()

void com.freerdp.freerdpcore.domain.BookmarkBase.setPassword ( String  password)
inline
Here is the caller graph for this function:

◆ setPerformanceFlags()

void com.freerdp.freerdpcore.domain.BookmarkBase.setPerformanceFlags ( PerformanceFlags  performanceFlags)
inline

◆ setScreenSettings()

void com.freerdp.freerdpcore.domain.BookmarkBase.setScreenSettings ( ScreenSettings  screenSettings)
inline

◆ setUsername()

void com.freerdp.freerdpcore.domain.BookmarkBase.setUsername ( String  username)
inline
Here is the caller graph for this function:

◆ writeToParcel()

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

◆ writeToSharedPreferences()

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

Reimplemented in com.freerdp.freerdpcore.domain.QuickConnectBookmark, com.freerdp.freerdpcore.domain.PlaceholderBookmark, and com.freerdp.freerdpcore.domain.ManualBookmark.

Here is the call graph for this function:
Here is the caller graph for this function:

Field Documentation

◆ CREATOR

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

◆ type

int com.freerdp.freerdpcore.domain.BookmarkBase.type
protected

◆ TYPE_CUSTOM_BASE

final int com.freerdp.freerdpcore.domain.BookmarkBase.TYPE_CUSTOM_BASE = 1000
static

◆ TYPE_INVALID

final int com.freerdp.freerdpcore.domain.BookmarkBase.TYPE_INVALID = -1
static

◆ TYPE_MANUAL

final int com.freerdp.freerdpcore.domain.BookmarkBase.TYPE_MANUAL = 1
static

◆ TYPE_PLACEHOLDER

final int com.freerdp.freerdpcore.domain.BookmarkBase.TYPE_PLACEHOLDER = 3
static

◆ TYPE_QUICKCONNECT

final int com.freerdp.freerdpcore.domain.BookmarkBase.TYPE_QUICKCONNECT = 2
static

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