All Packages    This Package  Previous  Next  

Class sqlj.runtime.profile.ProfileData

java.lang.Object
   |
   +----sqlj.runtime.profile.ProfileData

public abstract class ProfileData
extends Object
implements Serializable
The profile data class manages a collection of profile entries, where each entry describes a static sql operation. A profile data object represents the sql resources of a particular connection context defined within an application module.


Constructor Index

 o ProfileData()

Method Index

 o getEntryInfo(int)
 o getProfile()
 o getSourceFile()
Returns the name of the source file from which this profile was generated, or null if not available.
 o size()

Constructors

 o ProfileData
 public ProfileData()

Methods

 o size
 public abstract int size()
Returns:
the number of entries in the profile
 o getEntryInfo
 public abstract EntryInfo getEntryInfo(int ndx)
Parameters:
ndx - the index of the entry to describe, range 0 to size()-1.
Returns:
a description of the entry at index "ndx" in the profile.
 o getProfile
 public abstract Profile getProfile()
Returns:
the profile with which this object is associated
 o getSourceFile
 public abstract String getSourceFile()
Returns the name of the source file from which this profile was generated, or null if not available. The name returned includes the file extension, but no path information (e.g. "MyFile.sqlj").


All Packages    This Package  Previous  Next