Purpose:
Concrete class to represent the SQLResultSetMapping structure as defined by
the EJB 3.0 Persistence specification. This class is used by the
ResultSetMappingQuery and is a component of the TopLink Project
see
oracle.toplink.essentials.sessions.Project
author
Gordon Yorke
since
TopLink Java Essentials
Fields Summary
protected String
name
Stores the name of this SQLResultSetMapping. This name is unique within
The project.
protected List
results
Stores the list of SQLResult in the order they were
added to the Mapping
INTERNAL:
Convert all the class-name-based settings in this SQLResultSetMapping to actual class-based
settings. This method is used when converting a project that has been built
with class names to a project with classes.
param
classLoader
Iterator iterator = getResults().iterator();
while (iterator.hasNext()){
((SQLResult)iterator.next()).convertClassNamesToClasses(classLoader);
}