Class: Saxon::XSLT::Compiler
- Inherits:
-
Object
- Object
- Saxon::XSLT::Compiler
- Extended by:
- Forwardable
- Defined in:
- lib/saxon/xslt/compiler.rb
Overview
Compiles XSLT stylesheets so they can be executed
Instance Attribute Summary collapse
-
#declared_collations ⇒ Hash<String => java.text.Collator>
readonly
Declared collations as URI => Collator hash.
-
#default_collation ⇒ String
readonly
The URI of the default declared collation.
Class Method Summary collapse
-
.create(processor) { ... } ⇒ Saxon::XSLT::Compiler
Create a new
XSLT::Compilerusing the supplied Processor.
Instance Method Summary collapse
-
#compile(expression) ⇒ Saxon::XSLT::Executable
The executable query.
- #create(&block) ⇒ Object
-
#initialize(s9_processor, static_context) ⇒ Compiler
constructor
private
A new instance of Compiler.
Constructor Details
#initialize(s9_processor, static_context) ⇒ Compiler
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of Compiler.
31 32 33 |
# File 'lib/saxon/xslt/compiler.rb', line 31 def initialize(s9_processor, static_context) @s9_processor, @static_context = s9_processor, static_context end |
Instance Attribute Details
#declared_collations ⇒ Hash<String => java.text.Collator> (readonly)
Returns declared collations as URI => Collator hash.
|
|
# File 'lib/saxon/xslt/compiler.rb', line 36
|
#default_collation ⇒ String (readonly)
Returns the URI of the default declared collation.
|
|
# File 'lib/saxon/xslt/compiler.rb', line 36
|
Class Method Details
.create(processor) { ... } ⇒ Saxon::XSLT::Compiler
Create a new XSLT::Compiler using the supplied Processor. Passing a block gives access to a DSL for setting up the compiler’s static context.
16 17 18 19 |
# File 'lib/saxon/xslt/compiler.rb', line 16 def self.create(processor, &block) static_context = XSLT::StaticContext.define(block) new(processor.to_java, static_context) end |
Instance Method Details
#compile(expression) ⇒ Saxon::XSLT::Executable
Returns the executable query.
43 44 45 |
# File 'lib/saxon/xslt/compiler.rb', line 43 def compile(expression) Saxon::XSLT::Executable.new(new_compiler.compile(expression), static_context) end |
#create(&block) ⇒ Object
47 48 49 50 |
# File 'lib/saxon/xslt/compiler.rb', line 47 def create(&block) new_static_context = static_context.define(block) self.class.new(@s9_processor, new_static_context) end |