February 01, 2006
Native Queries for Persistent Objects
// Java
public abstract class Predicate <ExtentType> {
public <ExtentType> Predicate (){}
public abstract boolean match (ExtentType candidate);
}
Example 7: Predicate class.
|
|
||||||||||||||||||||||||||||
|
|