class Android::Manifest::IntentFilter::Category
intent-filter category class
Attributes
name[R]
@return [String] category name of intent-filter
type[R]
@return [String] category type of intent-filter
Public Class Methods
new(elem)
click to toggle source
# File lib/android/manifest.rb, line 272 def initialize(elem) @type = 'category' @name = elem.attributes['name'] end