Uses of Class
ccs.cpc.VDevice

Packages that use VDevice
ccs.cpc   
ccs.cpc.impl   
 

Uses of VDevice in ccs.cpc
 

Methods in ccs.cpc that return VDevice
 VDevice VFileUrl.getDevice()
           
 VDevice VFile.getDevice()
          return the VDevice this sits on.
abstract  VDevice CpCmdr.getDeviceForID(java.lang.String deviceID)
          Given a device ID, returns the device it belongs to, ie. for any VDevice vd, vd === getDeviceForID(vd.getID()).
 

Constructors in ccs.cpc with parameters of type VDevice
VFile(VDevice device, VFile parent, java.lang.String path, boolean isDirectory)
          Construct a VFile given a device and a complete path as described above.
VFileUrl(VDevice vd, java.lang.String viewerID, java.lang.String actionID, java.lang.String filepath)
          Construct a URL for something other than a vfile, eg. a ControlHandler call.
 

Uses of VDevice in ccs.cpc.impl
 

Subclasses of VDevice in ccs.cpc.impl
(package private)  class ArchVDevice
          An VDevice which is an archive - a beetree with a filesystem set in it.
 class CDBVDevice
          A "CDB" VDevice - an Archive which is registered with Checkpoint.
(package private)  class DiskVDevice
           
(package private)  class ResultsVDevice
           
(package private)  class ZipVDevice
           
 

Methods in ccs.cpc.impl that return VDevice
(package private)  VDevice MainLogic.getCurrentVDevice(BrowserLogic src)
          Determine the currently-selected device for the specified browser panel.
 VDevice CpcImpl.getDeviceForID(java.lang.String deviceID)
           
 VDevice VDeviceLister.getDeviceForID(java.lang.String deviceID)
           
(package private)  VDevice[] FileFindDialog.getFilteredSnapshot()
           
 VDevice VDeviceLister.getVd(int idx)
           
 VDevice BrowserModel.getVDeviceAt(int idx)
           
 

Methods in ccs.cpc.impl with parameters of type VDevice
(package private)  void MainLogic.closeVDevice(VDevice vd)
          Close a VDevice.
(package private)  void BrowserLogic.gotoRootOf(VDevice vd)
           
(package private)  boolean VDeviceLister.isOpen(VDevice vd)
           
(package private)  void ReaperManager.killAllUsersOf(VDevice vd)
           
(package private)  void ReaperThread.killIfUserOf(VDevice device)
           
 VFile BrowserModel.lastPwdFor(VDevice vd)
           
(package private)  void VDeviceLister.mount(VDevice vd)
           
 void FindPayload.postprocessDevice(VDevice vd)
           
 void FindPayload.preprocessDevice(VDevice vd)
           
(package private)  void MainLogic.registerVDevice(VDevice vd, boolean isLeft)
          Register a newly-opened VDevice.
(package private)  void MainLogic.registerVDevice(VDevice vd, BrowserLogic target)
          Register a newly-opened VDevice.
(package private)  void VDeviceLister.umount(VDevice vd)
           
 

Constructors in ccs.cpc.impl with parameters of type VDevice
DeviceRecurserThread(CpcImpl cpc, VDevice[] targets)
           
DiskVFile(java.io.File f, VDevice vd, DiskVFile parent)