本文整理汇总了Java中fr.opensagres.xdocreport.template.TemplateEngineKind.Velocity方法的典型用法代码示例。如果您正苦于以下问题:Java TemplateEngineKind.Velocity方法的具体用法?Java TemplateEngineKind.Velocity怎么用?Java TemplateEngineKind.Velocity使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类fr.opensagres.xdocreport.template.TemplateEngineKind
的用法示例。
在下文中一共展示了TemplateEngineKind.Velocity方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: main
import fr.opensagres.xdocreport.template.TemplateEngineKind; //导入方法依赖的package包/类
public static void main( String[] args )
{
try
{
FieldsMetadata metadata = new FieldsMetadata( TemplateEngineKind.Velocity );
metadata.load( "project", ProjectWithImage.class );
metadata.load( "developers", DeveloperWithImage.class, true );
metadata.saveXML( System.out );
}
catch ( Exception e )
{
e.printStackTrace();
}
}
示例2: ODTProjectWithVelocityListController
import fr.opensagres.xdocreport.template.TemplateEngineKind; //导入方法依赖的package包/类
public ODTProjectWithVelocityListController()
{
super( TemplateEngineKind.Velocity, DocumentKind.ODT );
}
示例3: DocxProjectWithVelocityListController
import fr.opensagres.xdocreport.template.TemplateEngineKind; //导入方法依赖的package包/类
public DocxProjectWithVelocityListController()
{
super( TemplateEngineKind.Velocity, DocumentKind.ODT );
}
示例4: DocxBig
import fr.opensagres.xdocreport.template.TemplateEngineKind; //导入方法依赖的package包/类
public DocxBig()
{
super( "DocxBig.docx", TemplateEngineKind.Velocity, DocumentKind.DOCX );
}
示例5: ODTHelloWorldWithVelocity
import fr.opensagres.xdocreport.template.TemplateEngineKind; //导入方法依赖的package包/类
public ODTHelloWorldWithVelocity()
{
super( "ODTHelloWorldWithVelocity.odt", TemplateEngineKind.Velocity, DocumentKind.ODT );
}
示例6: ODTLettreRelance
import fr.opensagres.xdocreport.template.TemplateEngineKind; //导入方法依赖的package包/类
public ODTLettreRelance()
{
super( "ODTLettreRelance.odt", TemplateEngineKind.Velocity, DocumentKind.ODT );
}
示例7: ODTStructures
import fr.opensagres.xdocreport.template.TemplateEngineKind; //导入方法依赖的package包/类
public ODTStructures()
{
super( "ODTStructures.odt", TemplateEngineKind.Velocity, DocumentKind.ODT );
}
示例8: DocxStructures
import fr.opensagres.xdocreport.template.TemplateEngineKind; //导入方法依赖的package包/类
public DocxStructures()
{
super( "DocxStructures.docx", TemplateEngineKind.Velocity, DocumentKind.DOCX );
}
示例9: DocxLettreRelance
import fr.opensagres.xdocreport.template.TemplateEngineKind; //导入方法依赖的package包/类
public DocxLettreRelance()
{
super( "DocxLettreRelance.docx", TemplateEngineKind.Velocity, DocumentKind.DOCX );
}
示例10: ODTProjectWithVelocity
import fr.opensagres.xdocreport.template.TemplateEngineKind; //导入方法依赖的package包/类
public ODTProjectWithVelocity()
{
super( "ODTProjectWithVelocity.odt", TemplateEngineKind.Velocity, DocumentKind.ODT );
}
示例11: ODTBig
import fr.opensagres.xdocreport.template.TemplateEngineKind; //导入方法依赖的package包/类
public ODTBig()
{
super( "ODTBig.odt", TemplateEngineKind.Velocity, DocumentKind.ODT );
}
示例12: DocXHelloWorldWithVelocity
import fr.opensagres.xdocreport.template.TemplateEngineKind; //导入方法依赖的package包/类
public DocXHelloWorldWithVelocity()
{
super( "DocXHelloWorldWithVelocity.docx", TemplateEngineKind.Velocity, DocumentKind.DOCX );
}
示例13: ODTCV
import fr.opensagres.xdocreport.template.TemplateEngineKind; //导入方法依赖的package包/类
public ODTCV()
{
super( "ODTCV.odt", TemplateEngineKind.Velocity, DocumentKind.ODT );
}
示例14: DocxCV
import fr.opensagres.xdocreport.template.TemplateEngineKind; //导入方法依赖的package包/类
public DocxCV()
{
super( "DocxCV.docx", TemplateEngineKind.Velocity, DocumentKind.DOCX );
}
示例15: HelloWorldController
import fr.opensagres.xdocreport.template.TemplateEngineKind; //导入方法依赖的package包/类
public HelloWorldController()
{
super( TemplateEngineKind.Velocity, DocumentKind.ODT );
}