EMMA Coverage Report (generated Sat Nov 03 21:53:04 GMT 2007)
[all classes][sf.qof.adapter]

COVERAGE SUMMARY FOR SOURCE FILE [CommonAdapterRegistrar.java]

nameclass, %method, %block, %line, %
CommonAdapterRegistrar.java100% (1/1)50%  (1/2)62%  (5/8)83%  (5/6)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class CommonAdapterRegistrar100% (1/1)50%  (1/2)62%  (5/8)83%  (5/6)
CommonAdapterRegistrar (): void 0%   (0/1)0%   (0/3)0%   (0/1)
registerCommonAdapters (): void 100% (1/1)100% (5/5)100% (5/5)

1/*
2 * Copyright 2007 brunella ltd
3 *
4 * Licensed under the LGPL Version 3 (the "License");
5 * you may not use this file except in compliance with the License.
6 *
7 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
8 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
9 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
10 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
11 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
12 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
13 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
14 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
15 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
16 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
17 * THE POSSIBILITY OF SUCH DAMAGE.
18 */
19package sf.qof.adapter;
20 
21/**
22 * Registers common adapters in package <code>sf.qof.adapter</code> with <code>QueryObjectFactory</code>.
23 */
24public class CommonAdapterRegistrar {
25 
26  /**
27   * Register common adapters.
28   * 
29   * @see BlobAdapter#register()
30   * @see ClobAdapter#register()
31   * @see EnumerationAdapter#register()
32   * @see BooleanAdapter#registerYesNo()
33   */
34  public static void registerCommonAdapters() {
35    BlobAdapter.register();
36    ClobAdapter.register();
37    EnumerationAdapter.register();
38    BooleanAdapter.registerYesNo();
39  }
40}

[all classes][sf.qof.adapter]
EMMA 2.0.5312 (C) Vladimir Roubtsov