KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > faces > model > ResultSetDataModel


1 /*
2  * Copyright 2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package javax.faces.model;
17
18 /**
19   * @author Thomas Spiegl (latest modification by $Author: mwessendorf $)
20   * @version $Revision: 1.7 $ $Date: 2004/07/01 22:01:10 $
21  * $Log: ResultSetDataModel.java,v $
22  * Revision 1.7 2004/07/01 22:01:10 mwessendorf
23  * ASF switch
24  *
25  * Revision 1.6 2004/04/07 07:27:10 manolito
26  * changed exception msg
27  *
28 */

29 public class ResultSetDataModel extends DataModel
30 {
31     // FIELDS
32

33     // CONSTRUCTORS
34
public ResultSetDataModel()
35     {
36         //TODO
37
throw new UnsupportedOperationException JavaDoc("Not yet implemented:" + this.getClass().getName());
38     }
39
40     public ResultSetDataModel(java.sql.ResultSet JavaDoc result)
41     {
42         //TODO
43
throw new UnsupportedOperationException JavaDoc("Not yet implemented:" + this.getClass().getName());
44     }
45
46     // METHODS
47
public int getRowCount()
48     {
49         //TODO
50
throw new UnsupportedOperationException JavaDoc("Not yet implemented:" + this.getClass().getName());
51     }
52
53     public Object JavaDoc getRowData()
54     {
55         //TODO
56
throw new UnsupportedOperationException JavaDoc("Not yet implemented:" + this.getClass().getName());
57     }
58
59     public int getRowIndex()
60     {
61         //TODO
62
throw new UnsupportedOperationException JavaDoc("Not yet implemented:" + this.getClass().getName());
63     }
64
65     public Object JavaDoc getWrappedData()
66     {
67         //TODO
68
throw new UnsupportedOperationException JavaDoc("Not yet implemented:" + this.getClass().getName());
69     }
70
71     public boolean isRowAvailable()
72     {
73         //TODO
74
throw new UnsupportedOperationException JavaDoc("Not yet implemented:" + this.getClass().getName());
75     }
76
77     public void setRowIndex(int rowIndex)
78     {
79         //TODO
80
throw new UnsupportedOperationException JavaDoc("Not yet implemented:" + this.getClass().getName());
81     }
82
83     public void setWrappedData(Object JavaDoc data)
84     {
85         //TODO
86
throw new UnsupportedOperationException JavaDoc("Not yet implemented:" + this.getClass().getName());
87     }
88
89 }
90
Popular Tags