| net.sourceforge.groboutils.codecoverage.v2.datastore.IClassMetaDataReader
All known Subclasses: net.sourceforge.groboutils.codecoverage.v2.datastore.DirClassMetaDataReader,
IClassMetaDataReader | public interface IClassMetaDataReader (Code) | | Knows how to read class meta-data from the repository.
author: Matt Albrecht groboclown@users.sourceforge.net version: $Date: 2004/04/15 05:48:26 $ since: December 15, 2002 |
Method Summary | |
public void | close() Closes off the reader's connection to the store. | public String[] | getClassSignatures() Returns all classes known for this particular data set. | public ClassRecord | readClass(String classSignature) Returns the class record for the class with this particular signature.
Parameters: classSignature - the class signature requested for reading inthe class record. |
close | public void close() throws IOException(Code) | | Closes off the reader's connection to the store.
exception: IOException - if there was an underlying read error, or ifthe reader has already been closed. |
getClassSignatures | public String[] getClassSignatures() throws IOException(Code) | | Returns all classes known for this particular data set.
the list of all class signatures that can be read byreadClass( String ), but never null. exception: IOException - if there was an underlying read error, or ifthe reader has been closed. |
readClass | public ClassRecord readClass(String classSignature) throws IOException(Code) | | Returns the class record for the class with this particular signature.
Parameters: classSignature - the class signature requested for reading inthe class record. the record corresponding to this class, or null ifthere is no such class signature known. exception: IOException - if there is an underlying error during the read,or if the reader has been closed. |
|
|