org.infolayer.model.op
Class OpReal

java.lang.Object
  extended byorg.infolayer.model.op.OpReal

public class OpReal
extends java.lang.Object

Please note: Since Integer is a subtype of Real, the operations listed below can also be invoked on integers without a type conversion.


Constructor Summary
OpReal()
           
 
Method Summary
static double op_add(double a, double b)
           
static double op_div(double a, double b)
           
static long op_floor(double d)
           
static double op_mul(double a, double b)
           
static double op_neg(double a)
           
static double op_sub(double a, double b)
           
static java.lang.String op_toString(double d, java.lang.String fmt)
           
static void register(UmlClassifier r)
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OpReal

public OpReal()
Method Detail

register

public static void register(UmlClassifier r)

op_add

public static double op_add(double a,
                            double b)

op_sub

public static double op_sub(double a,
                            double b)

op_mul

public static double op_mul(double a,
                            double b)

op_div

public static double op_div(double a,
                            double b)

op_neg

public static double op_neg(double a)

op_floor

public static long op_floor(double d)

op_toString

public static java.lang.String op_toString(double d,
                                           java.lang.String fmt)