class PaloAlto::XML::Config::Shared::PdfSummaryReport::Entry

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 40573
def _section
        :'entry'
end
custom_widget() click to toggle source
# File lib/palo_alto/config.rb, line 40766
def custom_widget
        if @create_children
                @subclasses['custom-widget'] ||= CustomWidget.new(parent_instance: self, create_children: @create_children)
        else
                CustomWidget.new(parent_instance: self)
        end
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 40570
def has_multiple_values?
        false
end
header() click to toggle source
# File lib/palo_alto/config.rb, line 40597
def header
        @subclasses['header'] ||= Header.new(parent_instance: self, create_children: @create_children)
end
name() click to toggle source

alphanumeric string [ 0-9a-zA-Z._-]

# File lib/palo_alto/config.rb, line 40780
def name
        prop_get('@name')
end
predefined_widget() click to toggle source
# File lib/palo_alto/config.rb, line 40694
def predefined_widget
        if @create_children
                @subclasses['predefined-widget'] ||= PredefinedWidget.new(parent_instance: self, create_children: @create_children)
        else
                PredefinedWidget.new(parent_instance: self)
        end
end