class JunglePath::Query::FieldPrimaryKey
Attributes
name[RW]
node[RW]
parent[RW]
Public Class Methods
new(name, node, parent)
click to toggle source
# File lib/jungle_path/query/field_primary_key.rb, line 11 def initialize(name, node, parent) @name = name.downcase.to_sym @node = node @parent = parent end
Public Instance Methods
is_entity?()
click to toggle source
# File lib/jungle_path/query/field_primary_key.rb, line 16 def is_entity? false end
is_primary_key_column?()
click to toggle source
# File lib/jungle_path/query/field_primary_key.rb, line 19 def is_primary_key_column? true end
is_secure?()
click to toggle source
# File lib/jungle_path/query/field_primary_key.rb, line 22 def is_secure? false end