Clover coverage report - Replica - 1.0-Alpha
Coverage timestamp: Dom Fev 1 2004 17:00:58 WET
file stats: LOC: 49   Methods: 4
NCLOC: 25   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
ASTPlSqlUnaryExpression.java 0% 0% 0% 0%
coverage
 1   
 /* JJT:    0.2.2 */
 2   
 
 3   
 package    mobisnap.mobile_trx;
 4   
 
 5   
 /**
 6   
  * Implements unary expression
 7   
  */
 8   
 public class ASTPlSqlUnaryExpression extends    mobisnap.mobile_trx.SimpleNode {
 9   
     public ASTPlSqlPrimaryExpression    expr;
 10   
     public byte sign = 0; // 0 - no sign; 1 - + ; 2 - -
 11   
 
 12  0
     public ASTPlSqlUnaryExpression(int id) {
 13  0
         super(id);
 14   
     }
 15   
 
 16  0
     public ASTPlSqlUnaryExpression( MobisnapSQL p, int i) {
 17  0
         super( p, i);
 18  0
         id = i;
 19   
     }
 20   
     
 21   
     /** Accept the visitor. **/
 22  0
     public Object jjtAccept(MobisnapSQLVisitor visitor, Object data) {
 23  0
         return visitor.visit(this, data);
 24   
     }
 25   
     
 26   
     /**
 27   
      * Returns the value of the expression
 28   
      * 
 29   
      * @param msql_type Specifies which type of processing should be performed
 30   
      *        MobisnapConstants.MSQL_SERVER = 1
 31   
      *        MobisnapConstants.MSQL_TENTATIVE_CLIENT = 2
 32   
      *        MobisnapConstants.MSQL_STABLE_CLIENT = 3
 33   
      *        MobisnapConstants.MSQL_RESERVATION_CLIENT = 4
 34   
      * @param cond True if reservations associated iwth transaction should be 
 35   
      * propagated to the current transaction
 36   
      */
 37  0
     public Object value( int msql_type, boolean cond) throws Exception {
 38  0
         Object val = expr.value( msql_type, cond);
 39  0
         if( sign == 0)
 40  0
             return val;
 41  0
         if( sign == 1) {
 42  0
             MSQLTypeUtil.negate( val); // just to test if sign may be assigned
 43  0
             return val;
 44   
         } else
 45  0
             return MSQLTypeUtil.negate( val);
 46   
     }
 47   
             
 48   
 }
 49