Class: ExistDB::Resource::Xml
- Inherits:
-
Base
- Object
- Base
- ExistDB::Resource::Xml
show all
- Defined in:
- lib/existdb/resource/xml.rb
Instance Method Summary
collapse
Methods inherited from Base
#delete, #initialize, #inspect, #save
#delegate_to_java
Instance Method Details
#compile(*opts) ⇒ Object
9
10
11
|
# File 'lib/existdb/resource/xml.rb', line 9
def compile(*opts)
parent.xquery.compile(*opts)
end
|
#dom ⇒ Object
17
18
19
|
# File 'lib/existdb/resource/xml.rb', line 17
def dom
@obj.getContentAsDOM
end
|
#execute(*opts) ⇒ Object
13
14
15
|
# File 'lib/existdb/resource/xml.rb', line 13
def execute(*opts)
parent.xquery.execute(self, *opts)
end
|
#xquery(*opts) ⇒ Object
5
6
7
|
# File 'lib/existdb/resource/xml.rb', line 5
def xquery(*opts)
parent.xquery.query(self, *opts)
end
|