Module PortlettableDelegator::InstanceMethods
In: lib/portlettable_delegator.rb

Methods

title   url_options  

Public Instance methods

[Source]

    # File lib/portlettable_delegator.rb, line 11
11:     def title
12:       [:title, :name].each do |name|
13:         return portlettable.__send__(name) if portlettable.respond_to?(name)
14:       end
15:     end

[Source]

    # File lib/portlettable_delegator.rb, line 17
17:     def url_options
18:       portlettable.url_options
19:     end

[Validate]