Class: VORuby::ADQL::FromTable

Inherits:
Object
  • Object
show all
Defined in:
lib/voruby/adql/adql.rb

Overview

The base type for all tables used in the From clause of the query.

Direct Known Subclasses

ArchiveTable, JoinTable, Table

Class Method Summary collapse

Class Method Details

.from_xml(node) ⇒ Object



803
804
805
806
# File 'lib/voruby/adql/adql.rb', line 803

def self.from_xml(node)
 type_s = node.find_attribute('type', 'http://www.w3.org/2001/XMLSchema-instance')
  table = ObjectBuilder.get_class_for(type_s).from_xml(node)
end