use of org.dbflute.friends.velocity.DfVelocityContextFactory in project dbflute-core by dbflute.
the class DfReplaceSchemaTask method createVelocityContext.
protected VelocityContext createVelocityContext() {
final DfVelocityContextFactory factory = createVelocityContextFactory();
final AppData appData = AppData.createAsEmpty();
return factory.createAsCore(appData, _documentSelector);
}
use of org.dbflute.friends.velocity.DfVelocityContextFactory in project dbflute-core by dbflute.
the class DfFreeGenTask method createVelocityContext.
protected VelocityContext createVelocityContext() {
final DfVelocityContextFactory factory = createVelocityContextFactory();
final DfFreeGenManager manager = DfFreeGenInitializer.getManager();
return factory.createAsFreeGen(manager, _freeGenRequestList);
}
Aggregations