com.itranswarp.warpdb.Results Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of warpdb Show documentation
Show all versions of warpdb Show documentation
Simple, DSL-driven RDBMS interface for Java
package com.itranswarp.warpdb;
import java.util.List;
public class Results {
public final List results;
public Results(List results) {
this.results = results;
}
}