IFileEntry
public
interface
IFileEntry
com.android.tradefed.device.IFileEntry |
Definizione dell'interfaccia che offre un contratto più semplice e fittizio a
FileEntry
metodi.
DA FARE: sposta questo in ddmlib
Riepilogo
Metodi pubblici | |
---|---|
abstract
IFileEntry
|
findChild(String name)
Trova un elemento secondario |
abstract
|
getChildren(boolean useCache)
Restituisce gli elementi secondari di un |
abstract
String
|
getDate()
Wrapper per |
abstract
FileListingService.FileEntry
|
getFileEntry()
Restituisci il riferimento a ddmlib |
abstract
String
|
getFullEscapedPath()
Wrapper per |
abstract
String
|
getFullPath()
Wrapper per |
abstract
String
|
getName()
Wrapper per |
abstract
String
|
getPermissions()
Wrapper per |
abstract
String
|
getTime()
Wrapper per |
abstract
boolean
|
isAppFileName()
Wrapper per |
abstract
boolean
|
isDirectory()
Wrapper per |
Metodi pubblici
FindChild
public abstract IFileEntry findChild (String name)
Trova un elemento secondario IFileEntry
con il nome specificato.
Fondamentalmente un wrapper per FileEntry#findChild(String)
che
cercherà prima nei file secondari memorizzati nella cache il file con il nome specificato e, se non lo trovi,
aggiorna l'elenco dei file secondari memorizzati nella cache e riprova.
Parametri | |
---|---|
name |
String |
Ritorni | |
---|---|
IFileEntry |
Lanci | |
---|---|
|
com.android.tradefed.device.DeviceNotAvailableEccezione |
DeviceNotAvailableException |
getChildren
public abstractgetChildren (boolean useCache)
Restituisce gli elementi secondari di un IFileEntry
.
Fondamentalmente un wrapper sincrono
FileListingService#getChildren(FileEntry, boolean, FileListingService.IListingReceiver)
Parametri | |
---|---|
useCache |
boolean : true se i file secondari memorizzati nella cache devono essere restituiti, se disponibili.
false se deve essere forzato un nuovo comando ls. |
Ritorni | |
---|---|
|
elenco di file secondari |
Lanci | |
---|---|
|
com.android.tradefed.device.DeviceNotAvailableEccezione |
DeviceNotAvailableException |
getFileEntry
public abstract FileListingService.FileEntry getFileEntry ()
Restituisci il riferimento a ddmlib FileEntry
.
Ritorni | |
---|---|
FileListingService.FileEntry |
getFullEscapedPath
public abstract String getFullEscapedPath ()
Wrapper per FileEntry#getFullEscapedPath()
.
Ritorni | |
---|---|
String |
getFullPath
public abstract String getFullPath ()
Wrapper per FileEntry#getFullPath()
.
Ritorni | |
---|---|
String |
getPermissions
public abstract String getPermissions ()
Wrapper per FileEntry#getPermissions()
.
Ritorni | |
---|---|
String |
NomeFileApp
public abstract boolean isAppFileName ()
Wrapper per FileEntry#isAppFileName()
.
Ritorni | |
---|---|
boolean |
isDirectory
public abstract boolean isDirectory ()
Wrapper per FileEntry#isDirectory()
.
Ritorni | |
---|---|
boolean |