Clover coverage report - brownies library - 1.0-beta-1
Coverage timestamp: 月 8 16 2004 17:14:42 GMT+09:00
file stats: LOC: 634   Methods: 80
NCLOC: 247   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
MockBaseCallableStatement.java - 0% 0% 0%
coverage
 1   
 /*
 2   
  * Joey and its relative products are published under the terms
 3   
  * of the Apache Software License.
 4   
  */
 5   
 /*
 6   
  * Created on 2003/12/11
 7   
  */
 8   
 package org.asyrinx.brownie.jdbc.mockbase;
 9   
 
 10   
 import java.io.InputStream;
 11   
 import java.io.Reader;
 12   
 import java.math.BigDecimal;
 13   
 import java.net.URL;
 14   
 import java.sql.Array;
 15   
 import java.sql.Blob;
 16   
 import java.sql.CallableStatement;
 17   
 import java.sql.Clob;
 18   
 import java.sql.Date;
 19   
 import java.sql.Ref;
 20   
 import java.sql.SQLException;
 21   
 import java.sql.Time;
 22   
 import java.sql.Timestamp;
 23   
 import java.util.Calendar;
 24   
 import java.util.Map;
 25   
 
 26   
 /**
 27   
  * @author akima
 28   
  */
 29   
 public class MockBaseCallableStatement extends MockBasePreparedStatement
 30   
         implements CallableStatement {
 31   
 
 32   
     /**
 33   
      *  
 34   
      */
 35  0
     public MockBaseCallableStatement() {
 36  0
         super();
 37   
     }
 38   
 
 39   
     /**
 40   
      * @see java.sql.CallableStatement#registerOutParameter(int, int)
 41   
      */
 42  0
     public void registerOutParameter(int parameterIndex, int sqlType)
 43   
             throws SQLException {
 44   
         //do nothing
 45   
     }
 46   
 
 47   
     /**
 48   
      * @see java.sql.CallableStatement#registerOutParameter(int, int, int)
 49   
      */
 50  0
     public void registerOutParameter(int parameterIndex, int sqlType, int scale)
 51   
             throws SQLException {
 52   
         //do nothing
 53   
     }
 54   
 
 55   
     /**
 56   
      * @see java.sql.CallableStatement#wasNull()
 57   
      */
 58  0
     public boolean wasNull() throws SQLException {
 59  0
         return false;
 60   
     }
 61   
 
 62   
     /**
 63   
      * @see java.sql.CallableStatement#getString(int)
 64   
      */
 65  0
     public String getString(int parameterIndex) throws SQLException {
 66  0
         return null;
 67   
     }
 68   
 
 69   
     /**
 70   
      * @see java.sql.CallableStatement#getBoolean(int)
 71   
      */
 72  0
     public boolean getBoolean(int parameterIndex) throws SQLException {
 73  0
         return false;
 74   
     }
 75   
 
 76   
     /**
 77   
      * @see java.sql.CallableStatement#getByte(int)
 78   
      */
 79  0
     public byte getByte(int parameterIndex) throws SQLException {
 80  0
         return 0;
 81   
     }
 82   
 
 83   
     /**
 84   
      * @see java.sql.CallableStatement#getShort(int)
 85   
      */
 86  0
     public short getShort(int parameterIndex) throws SQLException {
 87  0
         return 0;
 88   
     }
 89   
 
 90   
     /**
 91   
      * @see java.sql.CallableStatement#getInt(int)
 92   
      */
 93  0
     public int getInt(int parameterIndex) throws SQLException {
 94  0
         return 0;
 95   
     }
 96   
 
 97   
     /**
 98   
      * @see java.sql.CallableStatement#getLong(int)
 99   
      */
 100  0
     public long getLong(int parameterIndex) throws SQLException {
 101  0
         return 0;
 102   
     }
 103   
 
 104   
     /**
 105   
      * @see java.sql.CallableStatement#getFloat(int)
 106   
      */
 107  0
     public float getFloat(int parameterIndex) throws SQLException {
 108  0
         return 0;
 109   
     }
 110   
 
 111   
     /**
 112   
      * @see java.sql.CallableStatement#getDouble(int)
 113   
      */
 114  0
     public double getDouble(int parameterIndex) throws SQLException {
 115  0
         return 0;
 116   
     }
 117   
 
 118   
     /**
 119   
      * @see java.sql.CallableStatement#getBigDecimal(int, int)
 120   
      * @deprecated
 121   
      */
 122  0
     public BigDecimal getBigDecimal(int parameterIndex, int scale)
 123   
             throws SQLException {
 124  0
         return null;
 125   
     }
 126   
 
 127   
     /**
 128   
      * @see java.sql.CallableStatement#getBytes(int)
 129   
      */
 130  0
     public byte[] getBytes(int parameterIndex) throws SQLException {
 131  0
         return null;
 132   
     }
 133   
 
 134   
     /**
 135   
      * @see java.sql.CallableStatement#getDate(int)
 136   
      */
 137  0
     public Date getDate(int parameterIndex) throws SQLException {
 138  0
         return null;
 139   
     }
 140   
 
 141   
     /**
 142   
      * @see java.sql.CallableStatement#getTime(int)
 143   
      */
 144  0
     public Time getTime(int parameterIndex) throws SQLException {
 145  0
         return null;
 146   
     }
 147   
 
 148   
     /**
 149   
      * @see java.sql.CallableStatement#getTimestamp(int)
 150   
      */
 151  0
     public Timestamp getTimestamp(int parameterIndex) throws SQLException {
 152  0
         return null;
 153   
     }
 154   
 
 155   
     /**
 156   
      * @see java.sql.CallableStatement#getObject(int)
 157   
      */
 158  0
     public Object getObject(int parameterIndex) throws SQLException {
 159  0
         return null;
 160   
     }
 161   
 
 162   
     /**
 163   
      * @see java.sql.CallableStatement#getBigDecimal(int)
 164   
      */
 165  0
     public BigDecimal getBigDecimal(int parameterIndex) throws SQLException {
 166  0
         return null;
 167   
     }
 168   
 
 169   
     /**
 170   
      * @see java.sql.CallableStatement#getObject(int, java.util.Map)
 171   
      */
 172  0
     public Object getObject(int i, Map map) throws SQLException {
 173  0
         return null;
 174   
     }
 175   
 
 176   
     /**
 177   
      * @see java.sql.CallableStatement#getRef(int)
 178   
      */
 179  0
     public Ref getRef(int i) throws SQLException {
 180  0
         return null;
 181   
     }
 182   
 
 183   
     /**
 184   
      * @see java.sql.CallableStatement#getBlob(int)
 185   
      */
 186  0
     public Blob getBlob(int i) throws SQLException {
 187  0
         return null;
 188   
     }
 189   
 
 190   
     /**
 191   
      * @see java.sql.CallableStatement#getClob(int)
 192   
      */
 193  0
     public Clob getClob(int i) throws SQLException {
 194  0
         return null;
 195   
     }
 196   
 
 197   
     /**
 198   
      * @see java.sql.CallableStatement#getArray(int)
 199   
      */
 200  0
     public Array getArray(int i) throws SQLException {
 201  0
         return null;
 202   
     }
 203   
 
 204   
     /**
 205   
      * @see java.sql.CallableStatement#getDate(int, java.util.Calendar)
 206   
      */
 207  0
     public Date getDate(int parameterIndex, Calendar cal) throws SQLException {
 208  0
         return null;
 209   
     }
 210   
 
 211   
     /**
 212   
      * @see java.sql.CallableStatement#getTime(int, java.util.Calendar)
 213   
      */
 214  0
     public Time getTime(int parameterIndex, Calendar cal) throws SQLException {
 215  0
         return null;
 216   
     }
 217   
 
 218   
     /**
 219   
      * @see java.sql.CallableStatement#getTimestamp(int, java.util.Calendar)
 220   
      */
 221  0
     public Timestamp getTimestamp(int parameterIndex, Calendar cal)
 222   
             throws SQLException {
 223  0
         return null;
 224   
     }
 225   
 
 226   
     /**
 227   
      * @see java.sql.CallableStatement#registerOutParameter(int, int,
 228   
      *        java.lang.String)
 229   
      */
 230  0
     public void registerOutParameter(int paramIndex, int sqlType,
 231   
             String typeName) throws SQLException {
 232   
         //do nothing
 233   
     }
 234   
 
 235   
     /**
 236   
      * @see java.sql.CallableStatement#registerOutParameter(java.lang.String,
 237   
      *        int)
 238   
      */
 239  0
     public void registerOutParameter(String parameterName, int sqlType)
 240   
             throws SQLException {
 241   
         //do nothing
 242   
     }
 243   
 
 244   
     /**
 245   
      * @see java.sql.CallableStatement#registerOutParameter(java.lang.String,
 246   
      *        int, int)
 247   
      */
 248  0
     public void registerOutParameter(String parameterName, int sqlType,
 249   
             int scale) throws SQLException {
 250   
         //do nothing
 251   
     }
 252   
 
 253   
     /**
 254   
      * @see java.sql.CallableStatement#registerOutParameter(java.lang.String,
 255   
      *        int, java.lang.String)
 256   
      */
 257  0
     public void registerOutParameter(String parameterName, int sqlType,
 258   
             String typeName) throws SQLException {
 259   
         //do nothing
 260   
     }
 261   
 
 262   
     /**
 263   
      * @see java.sql.CallableStatement#getURL(int)
 264   
      */
 265  0
     public URL getURL(int parameterIndex) throws SQLException {
 266  0
         return null;
 267   
     }
 268   
 
 269   
     /**
 270   
      * @see java.sql.CallableStatement#setURL(java.lang.String, java.net.URL)
 271   
      */
 272  0
     public void setURL(String parameterName, URL val) throws SQLException {
 273   
         //do nothing
 274   
     }
 275   
 
 276   
     /**
 277   
      * @see java.sql.CallableStatement#setNull(java.lang.String, int)
 278   
      */
 279  0
     public void setNull(String parameterName, int sqlType) throws SQLException {
 280   
         //do nothing
 281   
     }
 282   
 
 283   
     /**
 284   
      * @see java.sql.CallableStatement#setBoolean(java.lang.String, boolean)
 285   
      */
 286  0
     public void setBoolean(String parameterName, boolean x) throws SQLException {
 287   
         //do nothing
 288   
     }
 289   
 
 290   
     /**
 291   
      * @see java.sql.CallableStatement#setByte(java.lang.String, byte)
 292   
      */
 293  0
     public void setByte(String parameterName, byte x) throws SQLException {
 294   
         //do nothing
 295   
     }
 296   
 
 297   
     /**
 298   
      * @see java.sql.CallableStatement#setShort(java.lang.String, short)
 299   
      */
 300  0
     public void setShort(String parameterName, short x) throws SQLException {
 301   
         //do nothing
 302   
     }
 303   
 
 304   
     /**
 305   
      * @see java.sql.CallableStatement#setInt(java.lang.String, int)
 306   
      */
 307  0
     public void setInt(String parameterName, int x) throws SQLException {
 308   
         //do nothing
 309   
     }
 310   
 
 311   
     /**
 312   
      * @see java.sql.CallableStatement#setLong(java.lang.String, long)
 313   
      */
 314  0
     public void setLong(String parameterName, long x) throws SQLException {
 315   
         //do nothing
 316   
     }
 317   
 
 318   
     /**
 319   
      * @see java.sql.CallableStatement#setFloat(java.lang.String, float)
 320   
      */
 321  0
     public void setFloat(String parameterName, float x) throws SQLException {
 322   
         //do nothing
 323   
     }
 324   
 
 325   
     /**
 326   
      * @see java.sql.CallableStatement#setDouble(java.lang.String, double)
 327   
      */
 328  0
     public void setDouble(String parameterName, double x) throws SQLException {
 329   
         //do nothing
 330   
     }
 331   
 
 332   
     /**
 333   
      * @see java.sql.CallableStatement#setBigDecimal(java.lang.String,
 334   
      *        java.math.BigDecimal)
 335   
      */
 336  0
     public void setBigDecimal(String parameterName, BigDecimal x)
 337   
             throws SQLException {
 338   
         //do nothing
 339   
     }
 340   
 
 341   
     /**
 342   
      * @see java.sql.CallableStatement#setString(java.lang.String,
 343   
      *        java.lang.String)
 344   
      */
 345  0
     public void setString(String parameterName, String x) throws SQLException {
 346   
         //do nothing
 347   
     }
 348   
 
 349   
     /**
 350   
      * @see java.sql.CallableStatement#setBytes(java.lang.String, byte[])
 351   
      */
 352  0
     public void setBytes(String parameterName, byte[] x) throws SQLException {
 353   
         //do nothing
 354   
     }
 355   
 
 356   
     /**
 357   
      * @see java.sql.CallableStatement#setDate(java.lang.String, java.sql.Date)
 358   
      */
 359  0
     public void setDate(String parameterName, Date x) throws SQLException {
 360   
         //do nothing
 361   
     }
 362   
 
 363   
     /**
 364   
      * @see java.sql.CallableStatement#setTime(java.lang.String, java.sql.Time)
 365   
      */
 366  0
     public void setTime(String parameterName, Time x) throws SQLException {
 367   
         //do nothing
 368   
     }
 369   
 
 370   
     /**
 371   
      * @see java.sql.CallableStatement#setTimestamp(java.lang.String,
 372   
      *        java.sql.Timestamp)
 373   
      */
 374  0
     public void setTimestamp(String parameterName, Timestamp x)
 375   
             throws SQLException {
 376   
         //do nothing
 377   
     }
 378   
 
 379   
     /**
 380   
      * @see java.sql.CallableStatement#setAsciiStream(java.lang.String,
 381   
      *        java.io.InputStream, int)
 382   
      */
 383  0
     public void setAsciiStream(String parameterName, InputStream x, int length)
 384   
             throws SQLException {
 385   
         //do nothing
 386   
     }
 387   
 
 388   
     /**
 389   
      * @see java.sql.CallableStatement#setBinaryStream(java.lang.String,
 390   
      *        java.io.InputStream, int)
 391   
      */
 392  0
     public void setBinaryStream(String parameterName, InputStream x, int length)
 393   
             throws SQLException {
 394   
         //do nothing
 395   
     }
 396   
 
 397   
     /**
 398   
      * @see java.sql.CallableStatement#setObject(java.lang.String,
 399   
      *        java.lang.Object, int, int)
 400   
      */
 401  0
     public void setObject(String parameterName, Object x, int targetSqlType,
 402   
             int scale) throws SQLException {
 403   
         //do nothing
 404   
     }
 405   
 
 406   
     /**
 407   
      * @see java.sql.CallableStatement#setObject(java.lang.String,
 408   
      *        java.lang.Object, int)
 409   
      */
 410  0
     public void setObject(String parameterName, Object x, int targetSqlType)
 411   
             throws SQLException {
 412   
         //do nothing
 413   
     }
 414   
 
 415   
     /**
 416   
      * @see java.sql.CallableStatement#setObject(java.lang.String,
 417   
      *        java.lang.Object)
 418   
      */
 419  0
     public void setObject(String parameterName, Object x) throws SQLException {
 420   
         //do nothing
 421   
     }
 422   
 
 423   
     /**
 424   
      * @see java.sql.CallableStatement#setCharacterStream(java.lang.String,
 425   
      *        java.io.Reader, int)
 426   
      */
 427  0
     public void setCharacterStream(String parameterName, Reader reader,
 428   
             int length) throws SQLException {
 429   
         //do nothing
 430   
     }
 431   
 
 432   
     /**
 433   
      * @see java.sql.CallableStatement#setDate(java.lang.String, java.sql.Date,
 434   
      *        java.util.Calendar)
 435   
      */
 436  0
     public void setDate(String parameterName, Date x, Calendar cal)
 437   
             throws SQLException {
 438   
         //do nothing
 439   
     }
 440   
 
 441   
     /**
 442   
      * @see java.sql.CallableStatement#setTime(java.lang.String, java.sql.Time,
 443   
      *        java.util.Calendar)
 444   
      */
 445  0
     public void setTime(String parameterName, Time x, Calendar cal)
 446   
             throws SQLException {
 447   
         //do nothing
 448   
     }
 449   
 
 450   
     /**
 451   
      * @see java.sql.CallableStatement#setTimestamp(java.lang.String,
 452   
      *        java.sql.Timestamp, java.util.Calendar)
 453   
      */
 454  0
     public void setTimestamp(String parameterName, Timestamp x, Calendar cal)
 455   
             throws SQLException {
 456   
         //do nothing
 457   
     }
 458   
 
 459   
     /**
 460   
      * @see java.sql.CallableStatement#setNull(java.lang.String, int,
 461   
      *        java.lang.String)
 462   
      */
 463  0
     public void setNull(String parameterName, int sqlType, String typeName)
 464   
             throws SQLException {
 465   
         //do nothing
 466   
     }
 467   
 
 468   
     /**
 469   
      * @see java.sql.CallableStatement#getString(java.lang.String)
 470   
      */
 471  0
     public String getString(String parameterName) throws SQLException {
 472  0
         return null;
 473   
     }
 474   
 
 475   
     /**
 476   
      * @see java.sql.CallableStatement#getBoolean(java.lang.String)
 477   
      */
 478  0
     public boolean getBoolean(String parameterName) throws SQLException {
 479  0
         return false;
 480   
     }
 481   
 
 482   
     /**
 483   
      * @see java.sql.CallableStatement#getByte(java.lang.String)
 484   
      */
 485  0
     public byte getByte(String parameterName) throws SQLException {
 486  0
         return 0;
 487   
     }
 488   
 
 489   
     /**
 490   
      * @see java.sql.CallableStatement#getShort(java.lang.String)
 491   
      */
 492  0
     public short getShort(String parameterName) throws SQLException {
 493  0
         return 0;
 494   
     }
 495   
 
 496   
     /**
 497   
      * @see java.sql.CallableStatement#getInt(java.lang.String)
 498   
      */
 499  0
     public int getInt(String parameterName) throws SQLException {
 500  0
         return 0;
 501   
     }
 502   
 
 503   
     /**
 504   
      * @see java.sql.CallableStatement#getLong(java.lang.String)
 505   
      */
 506  0
     public long getLong(String parameterName) throws SQLException {
 507  0
         return 0;
 508   
     }
 509   
 
 510   
     /**
 511   
      * @see java.sql.CallableStatement#getFloat(java.lang.String)
 512   
      */
 513  0
     public float getFloat(String parameterName) throws SQLException {
 514  0
         return 0;
 515   
     }
 516   
 
 517   
     /**
 518   
      * @see java.sql.CallableStatement#getDouble(java.lang.String)
 519   
      */
 520  0
     public double getDouble(String parameterName) throws SQLException {
 521  0
         return 0;
 522   
     }
 523   
 
 524   
     /**
 525   
      * @see java.sql.CallableStatement#getBytes(java.lang.String)
 526   
      */
 527  0
     public byte[] getBytes(String parameterName) throws SQLException {
 528  0
         return null;
 529   
     }
 530   
 
 531   
     /**
 532   
      * @see java.sql.CallableStatement#getDate(java.lang.String)
 533   
      */
 534  0
     public Date getDate(String parameterName) throws SQLException {
 535  0
         return null;
 536   
     }
 537   
 
 538   
     /**
 539   
      * @see java.sql.CallableStatement#getTime(java.lang.String)
 540   
      */
 541  0
     public Time getTime(String parameterName) throws SQLException {
 542  0
         return null;
 543   
     }
 544   
 
 545   
     /**
 546   
      * @see java.sql.CallableStatement#getTimestamp(java.lang.String)
 547   
      */
 548  0
     public Timestamp getTimestamp(String parameterName) throws SQLException {
 549  0
         return null;
 550   
     }
 551   
 
 552   
     /**
 553   
      * @see java.sql.CallableStatement#getObject(java.lang.String)
 554   
      */
 555  0
     public Object getObject(String parameterName) throws SQLException {
 556  0
         return null;
 557   
     }
 558   
 
 559   
     /**
 560   
      * @see java.sql.CallableStatement#getBigDecimal(java.lang.String)
 561   
      */
 562  0
     public BigDecimal getBigDecimal(String parameterName) throws SQLException {
 563  0
         return null;
 564   
     }
 565   
 
 566   
     /**
 567   
      * @see java.sql.CallableStatement#getObject(java.lang.String,
 568   
      *        java.util.Map)
 569   
      */
 570  0
     public Object getObject(String parameterName, Map map) throws SQLException {
 571  0
         return null;
 572   
     }
 573   
 
 574   
     /**
 575   
      * @see java.sql.CallableStatement#getRef(java.lang.String)
 576   
      */
 577  0
     public Ref getRef(String parameterName) throws SQLException {
 578  0
         return null;
 579   
     }
 580   
 
 581   
     /**
 582   
      * @see java.sql.CallableStatement#getBlob(java.lang.String)
 583   
      */
 584  0
     public Blob getBlob(String parameterName) throws SQLException {
 585  0
         return null;
 586   
     }
 587   
 
 588   
     /**
 589   
      * @see java.sql.CallableStatement#getClob(java.lang.String)
 590   
      */
 591  0
     public Clob getClob(String parameterName) throws SQLException {
 592  0
         return null;
 593   
     }
 594   
 
 595   
     /**
 596   
      * @see java.sql.CallableStatement#getArray(java.lang.String)
 597   
      */
 598  0
     public Array getArray(String parameterName) throws SQLException {
 599  0
         return null;
 600   
     }
 601   
 
 602   
     /**
 603   
      * @see java.sql.CallableStatement#getDate(java.lang.String,
 604   
      *        java.util.Calendar)
 605   
      */
 606  0
     public Date getDate(String parameterName, Calendar cal) throws SQLException {
 607  0
         return null;
 608   
     }
 609   
 
 610   
     /**
 611   
      * @see java.sql.CallableStatement#getTime(java.lang.String,
 612   
      *        java.util.Calendar)
 613   
      */
 614  0
     public Time getTime(String parameterName, Calendar cal) throws SQLException {
 615  0
         return null;
 616   
     }
 617   
 
 618   
     /**
 619   
      * @see java.sql.CallableStatement#getTimestamp(java.lang.String,
 620   
      *        java.util.Calendar)
 621   
      */
 622  0
     public Timestamp getTimestamp(String parameterName, Calendar cal)
 623   
             throws SQLException {
 624  0
         return null;
 625   
     }
 626   
 
 627   
     /**
 628   
      * @see java.sql.CallableStatement#getURL(java.lang.String)
 629   
      */
 630  0
     public URL getURL(String parameterName) throws SQLException {
 631  0
         return null;
 632   
     }
 633   
 
 634   
 }