View Javadoc
1 /* 2 * Created on 2003-6-11 14:43:19 by joel guo 3 * 4 * vTradEx Information Technology Inc. 5 */ 6 package com.cyclops.dbdigger.task; 7 import org.apache.velocity.context.Context; 8 import org.apache.velocity.texen.ant.TexenTask; 9 10 import com.cyclops.dbdigger.DBDigger; 11 /*** Add description <font color="red">HERE</font>! 12 * 13 * @author <a href="mailto:joeblack.guo@vtradex.com">joel guo</a> 14 * @since 2003-6-11 14:43:19 15 */ 16 public class SchemaGenerationTask extends TexenTask { 17 /*** Override method initControlContext() of super class 18 * @see org.apache.velocity.texen.ant.TexenTask#initControlContext() 19 */ 20 public Context initControlContext() throws Exception { 21 Context context = super.initControlContext(); 22 context.put("schema", DBDigger.getSchema()); 23 return context; 24 } 25 }

This page was automatically generated by Maven