org.tools4j.groovytables.ConstructionMethod.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
*/
trait ConstructionMethod {
abstract ConstructionMethodPrecursor getConstructionMethodPrecursor(List columnHeadings, Object ... rawArgs);
abstract ConstructionMethodPrecursor getConstructionMethodPrecursor(Object ... rawArgs);
}