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.
-
ProfileData()
-
-
getEntryInfo(int)
-
-
getProfile()
-
-
getSourceFile()
- Returns the name of the source file from which this profile was
generated, or null if not available.
-
size()
-
ProfileData
public ProfileData()
size
public abstract int size()
- Returns:
- the number of entries in the profile
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.
getProfile
public abstract Profile getProfile()
- Returns:
- the profile with which this object is associated
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