/** LVM dialogs. */
class LV extends WizardDialog {
protected static Unit[] getUnits() {
return new Unit[]{
new Unit("K", "K", "KiByte", "KiBytes"),
new Unit("M", "M", "MiByte", "MiBytes"),
new Unit("G", "G", "GiByte", "GiBytes"),
new Unit("T", "T", "TiByte", "TiBytes")
};
}