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

COVERAGE SUMMARY FOR SOURCE FILE [DefaultDialect.java]

nameclass, %method, %block, %line, %
DefaultDialect.java100% (1/1)100% (5/5)100% (23/23)100% (5/5)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class DefaultDialect100% (1/1)100% (5/5)100% (23/23)100% (5/5)
DefaultDialect (): void 100% (1/1)100% (3/3)100% (1/1)
getLimitString (String, boolean): String 100% (1/1)100% (5/5)100% (1/1)
limitAddOffset (): boolean 100% (1/1)100% (5/5)100% (1/1)
limitOffsetFirst (): boolean 100% (1/1)100% (5/5)100% (1/1)
limitParametersBeforeQueryParameters (): boolean 100% (1/1)100% (5/5)100% (1/1)

1package sf.qof.dialect;
2 
3/**
4 * Implements default SQL syntax. 
5 */
6public class DefaultDialect implements SQLDialect {
7 
8  public String getLimitString(String sql, boolean hasOffset) {
9    throw new RuntimeException("Not supported");
10  }
11 
12  public boolean limitParametersBeforeQueryParameters() {
13        throw new RuntimeException("Not supported");
14  }
15 
16  public boolean limitAddOffset() {
17        throw new RuntimeException("Not supported");
18  }
19 
20  public boolean limitOffsetFirst() {
21        throw new RuntimeException("Not supported");
22  }
23 
24}

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