Examples of EvaluationFrame


Examples of org.omegahat.Environment.Databases.EvaluationFrame

public Database createCallFrame(Object[] args, String[] argNames)
{
if((args == null || args.length == 0) || (argNames == null || argNames.length == 0))
   return(null);

Database db = new EvaluationFrame("<OmegaInterfaceManager evaluation frame>");
int n = Math.min(args.length, argNames.length);

try {
   for(int i = 0; i < n ; i++) {
    db.assign(argNames[i], args[i]);
   }
} catch(Exception ex) {
    ex.printStackTrace();
}
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.