Uses of Class
chrriis.uihierarchy.unit.Unit

Packages that use Unit
chrriis.uihierarchy The core package of the UIHierarchy library. 
chrriis.uihierarchy.unit Unit handling, with implementations for basic units. 
 

Uses of Unit in chrriis.uihierarchy
 

Methods in chrriis.uihierarchy that return Unit
 Unit UIHConfig.getUnit(String unitName)
          Get the unit that is registered with the given name.
 

Methods in chrriis.uihierarchy with parameters of type Unit
 void UIHConfig.registerUnit(Unit unit)
          Register a unit, using the names it defines.
 void UIHConfig.registerUnit(Unit unit, String[] names)
          Register a unit, with some names that define it.
 

Uses of Unit in chrriis.uihierarchy.unit
 

Subclasses of Unit in chrriis.uihierarchy.unit
static class Centimeter.CentimeterUnit
          A unit representing a centimeter.
static class DluX.DluXUnit
          A unit representing a dialog unit on the horizontal axis.
static class DluY.DluYUnit
          A unit representing a dialog unit on the vertical axis.
static class DtpPoint.DtpPointUnit
          A unit representing a DTP point.
static class Inch.InchUnit
          A unit representing an inch.
static class Millimeter.MillimeterUnit
          A unit representing a millimeter.
static class Pixel.PixelUnit
          A unit representing a pixel.
(package private)  class chrriis.uihierarchy.unit.ScreenUnit
          A unit to use as a superclass for resolution based units.
 

Methods in chrriis.uihierarchy.unit that return Unit
static Unit Unit.getUnit(String unitName)
          Get a unit registered with the given name.
 

Methods in chrriis.uihierarchy.unit with parameters of type Unit
static void Unit.registerUnit(Unit unit)
          Register a unit, using the names it defines.
static void Unit.registerUnit(Unit unit, String[] names)
          Register a unit, with some names that define it.
static int Pixel.intValue(Unit unit, double value)
          Get the int value resulting from the conversion of the value from the specified unit.
static double Pixel.doubleValue(Unit unit, double value)
          Get the double value resulting from the conversion of the value from the specified unit.
 int Pixel.PixelUnit.intValue(Unit unit, double value)
          Get the int value resulting from the conversion of the value from the specified unit.
 double Pixel.PixelUnit.doubleValue(Unit unit, double value)
          Get the double value resulting from the conversion of the value from the specified unit.
static double Millimeter.doubleValue(Unit unit, double value)
          Get the double value resulting from the conversion of the value from the specified unit.
static double Inch.doubleValue(Unit unit, double value)
          Get the double value resulting from the conversion of the value from the specified unit.
static double DtpPoint.doubleValue(Unit unit, double value)
          Get the double value resulting from the conversion of the value from the specified unit.
static double DluY.doubleValue(Unit unit, double value)
          Get the double value resulting from the conversion of the value from the specified unit.
 double DluY.DluYUnit.doubleValue(Unit unit, double value)
          Get the double value resulting from the conversion of the value from the specified unit.
static double DluX.doubleValue(Unit unit, double value)
          Get the double value resulting from the conversion of the value from the specified unit.
 double DluX.DluXUnit.doubleValue(Unit unit, double value)
          Get the double value resulting from the conversion of the value from the specified unit.
static double Centimeter.doubleValue(Unit unit, double value)
          Get the double value resulting from the conversion of the value from the specified unit.