KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > mockobjects > atg > MockQueryBuilder


1 package com.mockobjects.atg;
2 import atg.repository.*;/**
3  * Creation date: (06/04/2001 09:57:34)
4  * @author:
5  */

6 public class MockQueryBuilder implements QueryBuilder {
7
8     /**
9      * MockQueryBuilder constructor comment.
10      */

11     public MockQueryBuilder() {
12         super();
13     }
14
15     /**
16      * createAndQuery method comment.
17      */

18     public Query createAndQuery(atg.repository.Query[] arg1) throws RepositoryException {
19         return null;
20     }
21
22     /**
23      * createComparisonQuery method comment.
24      */

25     public Query createComparisonQuery(QueryExpression arg1, QueryExpression arg2, int arg3) throws RepositoryException {
26         return null;
27     }
28
29     /**
30      * createConstantQueryExpression method comment.
31      */

32     public QueryExpression createConstantQueryExpression(Object JavaDoc arg1) throws RepositoryException {
33         return null;
34     }
35
36     /**
37      * createCountQueryExpression method comment.
38      */

39     public QueryExpression createCountQueryExpression(QueryExpression arg1) throws RepositoryException {
40         return null;
41     }
42
43     /**
44      * createElementAtQueryExpression method comment.
45      */

46     public QueryExpression createElementAtQueryExpression(QueryExpression arg1, QueryExpression arg2) throws RepositoryException {
47         return null;
48     }
49
50     /**
51      * createIdMatchingQuery method comment.
52      */

53     public Query createIdMatchingQuery(java.lang.String JavaDoc[] arg1) throws RepositoryException {
54         return null;
55     }
56
57     /**
58      * createIncludesAllQuery method comment.
59      */

60     public Query createIncludesAllQuery(QueryExpression arg1, QueryExpression arg2) throws RepositoryException {
61         return null;
62     }
63
64     /**
65      * createIncludesAnyQuery method comment.
66      */

67     public Query createIncludesAnyQuery(QueryExpression arg1, QueryExpression arg2) throws RepositoryException {
68         return null;
69     }
70
71     /**
72      * createIncludesItemQuery method comment.
73      */

74     public Query createIncludesItemQuery(QueryExpression arg1, Query arg2) throws RepositoryException {
75         return null;
76     }
77
78     /**
79      * createIncludesQuery method comment.
80      */

81     public Query createIncludesQuery(QueryExpression arg1, QueryExpression arg2) throws RepositoryException {
82         return null;
83     }
84
85     /**
86      * createIndexOfQueryExpression method comment.
87      */

88     public QueryExpression createIndexOfQueryExpression(QueryExpression arg1, QueryExpression arg2) throws RepositoryException {
89         return null;
90     }
91
92     /**
93      * createIsNullQuery method comment.
94      */

95     public Query createIsNullQuery(QueryExpression arg1) throws RepositoryException {
96         return null;
97     }
98
99     /**
100      * createNotQuery method comment.
101      */

102     public Query createNotQuery(Query arg1) throws RepositoryException {
103         return null;
104     }
105
106     /**
107      * createOrQuery method comment.
108      */

109     public Query createOrQuery(atg.repository.Query[] arg1) throws RepositoryException {
110         return null;
111     }
112
113     /**
114      * createPatternMatchQuery method comment.
115      */

116     public Query createPatternMatchQuery(QueryExpression arg1, QueryExpression arg2, int arg3) throws RepositoryException {
117         return null;
118     }
119
120     /**
121      * createPatternMatchQuery method comment.
122      */

123     public Query createPatternMatchQuery(QueryExpression arg1, QueryExpression arg2, int arg3, boolean arg4) throws RepositoryException {
124         return null;
125     }
126
127     /**
128      * createPropertyQueryExpression method comment.
129      */

130     public QueryExpression createPropertyQueryExpression(QueryExpression arg1, String JavaDoc arg2) throws RepositoryException {
131         return null;
132     }
133
134     /**
135      * createPropertyQueryExpression method comment.
136      */

137     public QueryExpression createPropertyQueryExpression(String JavaDoc arg1) throws RepositoryException {
138         return null;
139     }
140
141     /**
142      * createTextSearchQuery method comment.
143      */

144     public Query createTextSearchQuery(QueryExpression arg1, QueryExpression arg2, QueryExpression arg3) throws RepositoryException {
145         return null;
146     }
147
148     /**
149      * createTextSearchQuery method comment.
150      */

151     public Query createTextSearchQuery(QueryExpression arg1, QueryExpression arg2, QueryExpression arg3, QueryExpression arg4) throws RepositoryException {
152         return null;
153     }
154
155     /**
156      * createUnconstrainedQuery method comment.
157      */

158     public Query createUnconstrainedQuery() throws RepositoryException {
159         return null;
160     }
161
162     /**
163      * getRepositoryView method comment.
164      */

165     public RepositoryView getRepositoryView() {
166         return null;
167     }
168 }
Popular Tags