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 193
193:       def initialize(file, dest = Destination::GlobalFit.new(0), newwindow = false, indirect = false)
194:        
195:         super({:F => file, :D => dest, :NewWindow => newwindow}, indirect)
196:         
197:       end

[Validate]