Class Origami::Action::GoToR
In: sources/parser/actions.rb
Parent: Action

Class representing a GoTo Action to an external file.

Methods

new  

Public Class methods

Creates a new GoTo remote Action.

file:A FileSpec describing the file.
dest:A Destination in the file.
newwindow:Specifies whether the file has to be opened in a new window.

[Source]

     # File sources/parser/actions.rb, line 173
173:       def initialize(file, dest = Destination::GlobalFit.new(0), newwindow = false)
174:        
175:         super(:F => file, :D => dest, :NewWindow => newwindow)
176:         
177:       end

[Validate]