Class: Id3Taginator::Frames::Private::Entities::PrivateFrame
- Inherits:
-
Object
- Object
- Id3Taginator::Frames::Private::Entities::PrivateFrame
- Includes:
- Extensions::Comparable
- Defined in:
- lib/id3taginator/frames/private/entities/private_frame.rb
Instance Attribute Summary collapse
-
#owner_id ⇒ Object
Returns the value of attribute owner_id.
-
#private_data ⇒ Object
Returns the value of attribute private_data.
Instance Method Summary collapse
-
#initialize(owner_id, private_data) ⇒ PrivateFrame
constructor
constructor.
Methods included from Extensions::Comparable
Constructor Details
#initialize(owner_id, private_data) ⇒ PrivateFrame
constructor
16 17 18 19 |
# File 'lib/id3taginator/frames/private/entities/private_frame.rb', line 16 def initialize(owner_id, private_data) @owner_id = owner_id @private_data = private_data end |
Instance Attribute Details
#owner_id ⇒ Object
Returns the value of attribute owner_id.
10 11 12 |
# File 'lib/id3taginator/frames/private/entities/private_frame.rb', line 10 def owner_id @owner_id end |
#private_data ⇒ Object
Returns the value of attribute private_data.
10 11 12 |
# File 'lib/id3taginator/frames/private/entities/private_frame.rb', line 10 def private_data @private_data end |