Codota Logo
TransformerImpl.getStylesheet
Code IndexAdd Codota to your IDE (free)

How to use
getStylesheet
method
in
org.apache.xalan.transformer.TransformerImpl

Best Java code snippets using org.apache.xalan.transformer.TransformerImpl.getStylesheet (Showing top 20 results out of 315)

  • Common ways to obtain TransformerImpl
private void myMethod () {
TransformerImpl t =
  • Codota IconXPathContext xctxt;(TransformerImpl) xctxt.getOwnerObject()
  • Codota IconTemplates templates;(TransformerImpl) templates.newTransformer()
  • Codota IconSerializationHandler handler;(TransformerImpl) handler.getTransformer()
  • Smart code suggestions by Codota
}
origin: robovm/robovm

/**
 * Get the output properties used for the transformation.
 *
 * @return the output format that was set by the user,
 * otherwise the output format from the stylesheet.
 */
public OutputProperties getOutputFormat()
{
 // Get the output format that was set by the user, otherwise get the 
 // output format from the stylesheet.
 OutputProperties format = (null == m_outputFormat)
              ? getStylesheet().getOutputComposed()
              : m_outputFormat;
 return format;
}
origin: xalan/xalan

/**
 * Get the output properties used for the transformation.
 *
 * @return the output format that was set by the user,
 * otherwise the output format from the stylesheet.
 */
public OutputProperties getOutputFormat()
{
 // Get the output format that was set by the user, otherwise get the 
 // output format from the stylesheet.
 OutputProperties format = (null == m_outputFormat)
              ? getStylesheet().getOutputComposed()
              : m_outputFormat;
 return format;
}
origin: robovm/robovm

factory.setNamespaceAware( true );
if (m_transformer.getStylesheet().isSecureProcessing()) {
  try {
    factory.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, true);
origin: xalan/xalan

factory.setNamespaceAware( true );
if (m_transformer.getStylesheet().isSecureProcessing()) {
  try {
    factory.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, true);
origin: robovm/robovm

return transformer.getStylesheet().getAvailableElements().containsKey(
                          new QName(namespace, methName))
    ? XBoolean.S_TRUE : XBoolean.S_FALSE;
origin: xalan/xalan

return transformer.getStylesheet().getAvailableElements().containsKey(
                          new QName(namespace, methName))
    ? XBoolean.S_TRUE : XBoolean.S_FALSE;
origin: robovm/robovm

StylesheetRoot sr = getStylesheet();
Vector vars = sr.getVariablesAndParamsComposed();
origin: xalan/xalan

StylesheetRoot sr = getStylesheet();
Vector vars = sr.getVariablesAndParamsComposed();
origin: robovm/robovm

(OutputProperties) getStylesheet().getOutputComposed().clone();
origin: xalan/xalan

(OutputProperties) getStylesheet().getOutputComposed().clone();
origin: robovm/robovm

setExtensionsTable(getStylesheet());
  StylesheetRoot stylesheet = this.getStylesheet();
  int n = stylesheet.getGlobalImportCount();
origin: xalan/xalan

setExtensionsTable(getStylesheet());
  StylesheetRoot stylesheet = this.getStylesheet();
  int n = stylesheet.getGlobalImportCount();
origin: robovm/robovm

  getXPathContext().setNamespaceContext(getStylesheet());
SourceLocator srcLocator = getStylesheet();
xoh.setSourceLocator(srcLocator);
origin: xalan/xalan

  getXPathContext().setNamespaceContext(getStylesheet());
SourceLocator srcLocator = getStylesheet();
xoh.setSourceLocator(srcLocator);
origin: robovm/robovm

    throws TransformerException
if (transformer.getStylesheet().isSecureProcessing())
 throw new TransformerException(
  XSLMessages.createMessage(
origin: xalan/xalan

    throws TransformerException
if (transformer.getStylesheet().isSecureProcessing())
 throw new TransformerException(
  XSLMessages.createMessage(
origin: robovm/robovm

final StylesheetRoot sroot = transformer.getStylesheet();
final TemplateList tl = sroot.getTemplateListComposed();
final boolean quiet = transformer.getQuietConflictWarnings();
origin: xalan/xalan

final StylesheetRoot sroot = transformer.getStylesheet();
final TemplateList tl = sroot.getTemplateListComposed();
final boolean quiet = transformer.getQuietConflictWarnings();
origin: MobiVM/robovm

/**
 * Get the output properties used for the transformation.
 *
 * @return the output format that was set by the user,
 * otherwise the output format from the stylesheet.
 */
public OutputProperties getOutputFormat()
{
 // Get the output format that was set by the user, otherwise get the 
 // output format from the stylesheet.
 OutputProperties format = (null == m_outputFormat)
              ? getStylesheet().getOutputComposed()
              : m_outputFormat;
 return format;
}
origin: ibinti/bugvm

/**
 * Get the output properties used for the transformation.
 *
 * @return the output format that was set by the user,
 * otherwise the output format from the stylesheet.
 */
public OutputProperties getOutputFormat()
{
 // Get the output format that was set by the user, otherwise get the 
 // output format from the stylesheet.
 OutputProperties format = (null == m_outputFormat)
              ? getStylesheet().getOutputComposed()
              : m_outputFormat;
 return format;
}
org.apache.xalan.transformerTransformerImplgetStylesheet

Javadoc

Get the current stylesheet for this processor.

Popular methods of TransformerImpl

  • executeChildTemplates
    Execute each of the children of a template element.
  • getMsgMgr
    Return the message manager.
  • getOutputFormat
    Get the output properties used for the transformation.
  • getOutputPropertyNoDefault
    Get the value of a property, without using the default properties. This can be used to test if a pro
  • getXPathContext
    Get the XPath context associated with this transformer.
  • setContentHandler
    Set the content event handler. NEEDSDOC @param handler
  • <init>
    Construct a TransformerImpl.
  • applyTemplateToNode
    Given an element and mode, find the corresponding template and process the contents.
  • clearParameters
    Reset the parameters to a null list.
  • createSerializationHandler
  • currentFuncResultSeen
    Determines whether an EXSLT func:result instruction has been executed for the currently active EXSLT
  • currentTemplateRuleIsNull
    Tell if the current template rule is null, i.e. if we are directly within an apply-templates. Used f
  • currentFuncResultSeen,
  • currentTemplateRuleIsNull,
  • fatalError,
  • getContentHandler,
  • getContextNodeList,
  • getCountersTable,
  • getCurrentElement,
  • getCurrentNode,
  • getCurrentTemplate,
  • getErrorListener

Popular in Java

  • Finding current android device location
  • setScale (BigDecimal)
  • getContentResolver (Context)
  • getExternalFilesDir (Context)
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • Date (java.util)
    A specific moment in time, with millisecond precision. Values typically come from System#currentTime
  • ResourceBundle (java.util)
    Resource bundles contain locale-specific objects. When your program needs a locale-specific resource
  • JComboBox (javax.swing)
  • JLabel (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now