Uses of Class
net.sourceforge.webcompmath.data.Fraction

Packages that use Fraction
net.sourceforge.webcompmath.data   
net.sourceforge.webcompmath.draw   
 

Uses of Fraction in net.sourceforge.webcompmath.data
 

Methods in net.sourceforge.webcompmath.data that return Fraction
 Fraction Fraction.dividedBy(Fraction b)
          return a Fraction representing this Fraction divided by b
 Fraction Fraction.dividedBy(long n)
          return a Fraction representing this Fraction divided by n
 Fraction Fraction.inverse()
          return a Fraction representing 1 / this Fraction
 Fraction Fraction.minus(Fraction b)
          return a Fraction representing this Fraction minus b
 Fraction Fraction.minus(long n)
          return a Fraction representing this Fraction minus n
 Fraction Fraction.negative()
          return a Fraction representing the negated value of this Fraction
 Fraction Fraction.plus(Fraction b)
          return a Fraction representing this Fraction plus b
 Fraction Fraction.plus(long n)
          return a Fraction representing this Fraction plus n
 Fraction Fraction.times(Fraction b)
          return a Fraction representing this Fraction times b
 Fraction Fraction.times(long n)
          return a Fraction representing this Fraction times n
 

Methods in net.sourceforge.webcompmath.data with parameters of type Fraction
 Fraction Fraction.dividedBy(Fraction b)
          return a Fraction representing this Fraction divided by b
 Fraction Fraction.minus(Fraction b)
          return a Fraction representing this Fraction minus b
 Fraction Fraction.plus(Fraction b)
          return a Fraction representing this Fraction plus b
 Fraction Fraction.times(Fraction b)
          return a Fraction representing this Fraction times b
 

Constructors in net.sourceforge.webcompmath.data with parameters of type Fraction
Fraction(Fraction f)
          Create a fraction with the same value as Fraction f
 

Uses of Fraction in net.sourceforge.webcompmath.draw
 

Methods in net.sourceforge.webcompmath.draw that return Fraction
 Fraction RationalLabel.getFrac()
          Get the fraction
 

Methods in net.sourceforge.webcompmath.draw with parameters of type Fraction
 void RationalLabel.setFrac(Fraction frac)
          Set the fraction (does nothing if argument is null)
 

Constructors in net.sourceforge.webcompmath.draw with parameters of type Fraction
RationalLabel(Fraction frac, java.lang.String factorString)
          Construct a rational label.