KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > h2 > util > CacheHead


1 /*
2  * Copyright 2004-2006 H2 Group. Licensed under the H2 License, Version 1.0 (http://h2database.com/html/license.html).
3  * Initial Developer: H2 Group
4  */

5 package org.h2.util;
6
7 import java.sql.SQLException JavaDoc;
8
9 import org.h2.store.DataPage;
10
11 public class CacheHead extends CacheObject {
12
13     public int getByteCount(DataPage dummy) throws SQLException JavaDoc {
14         return 0;
15     }
16     
17     public void write(DataPage buff) throws SQLException JavaDoc {
18     }
19
20 }
21
Popular Tags