com.webcodepro.applecommander.storage
Interface FormattedDisk.DiskUsage

All Known Implementing Classes:
CpmFormatDisk.CpmDiskUsage
Enclosing class:
FormattedDisk

public static interface FormattedDisk.DiskUsage

Use this inner interface for managing the disk usage data. This offloads format-specific implementation to the implementing class. The usage is very similar to a Java2 Iterator - next must be called to set the value and isFree/isUsed are available for that location.


Method Summary
 boolean hasNext()
           
 boolean isFree()
           
 boolean isUsed()
           
 void next()
           
 

Method Detail

hasNext

boolean hasNext()

next

void next()

isFree

boolean isFree()

isUsed

boolean isUsed()