1 16 package javax.faces.model; 17 18 29 public class ResultSetDataModel extends DataModel 30 { 31 33 public ResultSetDataModel() 35 { 36 throw new UnsupportedOperationException ("Not yet implemented:" + this.getClass().getName()); 38 } 39 40 public ResultSetDataModel(java.sql.ResultSet result) 41 { 42 throw new UnsupportedOperationException ("Not yet implemented:" + this.getClass().getName()); 44 } 45 46 public int getRowCount() 48 { 49 throw new UnsupportedOperationException ("Not yet implemented:" + this.getClass().getName()); 51 } 52 53 public Object getRowData() 54 { 55 throw new UnsupportedOperationException ("Not yet implemented:" + this.getClass().getName()); 57 } 58 59 public int getRowIndex() 60 { 61 throw new UnsupportedOperationException ("Not yet implemented:" + this.getClass().getName()); 63 } 64 65 public Object getWrappedData() 66 { 67 throw new UnsupportedOperationException ("Not yet implemented:" + this.getClass().getName()); 69 } 70 71 public boolean isRowAvailable() 72 { 73 throw new UnsupportedOperationException ("Not yet implemented:" + this.getClass().getName()); 75 } 76 77 public void setRowIndex(int rowIndex) 78 { 79 throw new UnsupportedOperationException ("Not yet implemented:" + this.getClass().getName()); 81 } 82 83 public void setWrappedData(Object data) 84 { 85 throw new UnsupportedOperationException ("Not yet implemented:" + this.getClass().getName()); 87 } 88 89 } 90 | Popular Tags |