Class: MetakitFS::MkFile

Inherits:
Object
  • Object
show all
Defined in:
lib/fs/MetakitFS/MetakitFS.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path, fileRow, fpos, fread, fwrite) ⇒ MkFile

Returns a new instance of MkFile.



496
497
498
499
500
501
502
# File 'lib/fs/MetakitFS/MetakitFS.rb', line 496

def initialize(path, fileRow, fpos, fread, fwrite)
  @filePath  = path
  @fileRow   = fileRow
  @filePos   = fpos
  @fileRead  = fread
  @fileWrite = fwrite
end

Instance Attribute Details

#filePathObject

Returns the value of attribute filePath.



494
495
496
# File 'lib/fs/MetakitFS/MetakitFS.rb', line 494

def filePath
  @filePath
end

#filePosObject

Returns the value of attribute filePos.



494
495
496
# File 'lib/fs/MetakitFS/MetakitFS.rb', line 494

def filePos
  @filePos
end

#fileReadObject

Returns the value of attribute fileRead.



494
495
496
# File 'lib/fs/MetakitFS/MetakitFS.rb', line 494

def fileRead
  @fileRead
end

#fileRowObject

Returns the value of attribute fileRow.



494
495
496
# File 'lib/fs/MetakitFS/MetakitFS.rb', line 494

def fileRow
  @fileRow
end

#fileWriteObject

Returns the value of attribute fileWrite.



494
495
496
# File 'lib/fs/MetakitFS/MetakitFS.rb', line 494

def fileWrite
  @fileWrite
end