Java Code Examples for org.pentaho.reporting.engine.classic.core.ClassicEngineBoot#METADATA_NAMESPACE
The following examples show how to use
org.pentaho.reporting.engine.classic.core.ClassicEngineBoot#METADATA_NAMESPACE .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ReportProcessTaskMetaDataXmlFactoryModule.java From pentaho-reporting with GNU Lesser General Public License v2.1 | 4 votes |
public ReportProcessTaskMetaDataXmlFactoryModule() { super( ClassicEngineBoot.METADATA_NAMESPACE, "meta-data" ); }
Example 2
Source File: ReportPreProcessorMetaDataXmlFactoryModule.java From pentaho-reporting with GNU Lesser General Public License v2.1 | 4 votes |
public ReportPreProcessorMetaDataXmlFactoryModule() { super( ClassicEngineBoot.METADATA_NAMESPACE, "meta-data" ); }
Example 3
Source File: GlobalMetaDefinitionXmlFactoryModule.java From pentaho-reporting with GNU Lesser General Public License v2.1 | 2 votes |
/** * Returns the default namespace for a document with the characteristics given in the XmlDocumentInfo. * * @param documentInfo * the document information. * @return the default namespace uri for the document. */ public String getDefaultNamespace( final XmlDocumentInfo documentInfo ) { return ClassicEngineBoot.METADATA_NAMESPACE; }
Example 4
Source File: ExpressionMetaDataXmlFactoryModule.java From pentaho-reporting with GNU Lesser General Public License v2.1 | 2 votes |
/** * Returns the default namespace for a document with the characteristics given in the XmlDocumentInfo. * * @param documentInfo * the document information. * @return the default namespace uri for the document. */ public String getDefaultNamespace( final XmlDocumentInfo documentInfo ) { return ClassicEngineBoot.METADATA_NAMESPACE; }
Example 5
Source File: DataFactoryMetaDataXmlFactoryModule.java From pentaho-reporting with GNU Lesser General Public License v2.1 | 2 votes |
/** * Returns the default namespace for a document with the characteristics given in the XmlDocumentInfo. * * @param documentInfo * the document information. * @return the default namespace uri for the document. */ public String getDefaultNamespace( final XmlDocumentInfo documentInfo ) { return ClassicEngineBoot.METADATA_NAMESPACE; }
Example 6
Source File: ElementMetaDataXmlFactoryModule.java From pentaho-reporting with GNU Lesser General Public License v2.1 | 2 votes |
/** * Returns the default namespace for a document with the characteristics given in the XmlDocumentInfo. * * @param documentInfo * the document information. * @return the default namespace uri for the document. */ public String getDefaultNamespace( final XmlDocumentInfo documentInfo ) { return ClassicEngineBoot.METADATA_NAMESPACE; }