All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jfinal.plugin.activerecord.sql.SqlSource Maven / Gradle / Ivy

Go to download

JFinal is a simple, light, rapid,independent, extensible Java WEB + ORM framework. The feature of JFinal looks like ruby on rails especially ActiveRecord.

The newest version!
package com.jfinal.plugin.activerecord.sql;

import com.jfinal.template.source.ISource;

/**
 * 封装 sql 模板源
 */
class SqlSource {
	
	String file;
	ISource source;
	
	SqlSource(String file) {
		this.file = file;
		this.source = null;
	}
	
	SqlSource(ISource source) {
		this.file = null;
		this.source = source;
	}
	
	boolean isFile() {
		return file != null;
	}
}







© 2015 - 2025 Weber Informatics LLC | Privacy Policy