Class: Java::ComPff::PSTFile
- Inherits:
-
Object
- Object
- Java::ComPff::PSTFile
- Defined in:
- lib/pst/base.rb
Instance Attribute Summary collapse
-
#collection ⇒ Object
Returns the value of attribute collection.
-
#filename ⇒ Object
Returns the value of attribute filename.
Instance Method Summary collapse
-
#initialize(name) ⇒ PSTFile
constructor
A new instance of PSTFile.
- #name ⇒ Object
- #root ⇒ Object
Constructor Details
#initialize(name) ⇒ PSTFile
Returns a new instance of PSTFile.
8 9 10 11 |
# File 'lib/pst/base.rb', line 8 def initialize(name) super(name) @filename = name end |
Instance Attribute Details
#collection ⇒ Object
Returns the value of attribute collection.
4 5 6 |
# File 'lib/pst/base.rb', line 4 def collection @collection end |
#filename ⇒ Object
Returns the value of attribute filename.
5 6 7 |
# File 'lib/pst/base.rb', line 5 def filename @filename end |
Instance Method Details
#name ⇒ Object
13 14 15 |
# File 'lib/pst/base.rb', line 13 def name self.getMessageStore.getDisplayName end |
#root ⇒ Object
17 18 19 20 21 |
# File 'lib/pst/base.rb', line 17 def root f = self.getRootFolder f.file = self f end |