org.tools4j.groovytables.Callable.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of groovy-tables Show documentation
Show all versions of groovy-tables Show documentation
A groovy API which allows you to create lists of objects using a table like grammar.
package org.tools4j.groovytables
/**
* User: ben
* Date: 16/02/2016
* Time: 6:51 AM
*/
interface Callable {
CallPrecursor getCallPrecursor(List columnHeadings, Object ... rawArgs);
CallPrecursor getCallPrecursor(Object ... rawArgs);
}