Class: Rubyang::Xpath::MultiplicativeExpr

Inherits:
Object
  • Object
show all
Defined in:
lib/rubyang/xpath.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(op1, operator = nil, op2 = nil) ⇒ MultiplicativeExpr

Returns a new instance of MultiplicativeExpr.



350
351
352
353
354
# File 'lib/rubyang/xpath.rb', line 350

def initialize op1, operator=nil, op2=nil
  @op1 = op1
  @operator = operator
  @op2 = op2
end

Instance Attribute Details

#op1Object (readonly)

Returns the value of attribute op1.



349
350
351
# File 'lib/rubyang/xpath.rb', line 349

def op1
  @op1
end

#op2Object (readonly)

Returns the value of attribute op2.



349
350
351
# File 'lib/rubyang/xpath.rb', line 349

def op2
  @op2
end

#operatorObject (readonly)

Returns the value of attribute operator.



349
350
351
# File 'lib/rubyang/xpath.rb', line 349

def operator
  @operator
end