class Android::Manifest::IntentFilter::Action

intent-filter action class

Attributes

name[R]

@return [String] action name of intent-filter

type[R]

@return [String] action type of intent-filter

Public Class Methods

new(elem) click to toggle source
# File lib/android/manifest.rb, line 82
def initialize(elem)
  @type = 'action'
  @name = elem.attributes['name']
end