Package rubacon :: Package readers :: Module InformationReader
[hide private]
[frames] | no frames]

Source Code for Module rubacon.readers.InformationReader

 1  # The information reader is used to read information from the storage with the given operations. 
2 -class InformationReader(object):
3 # @AttributeType string 4 # The default storage for the information. 5 ___sTORAGE = 'db.information' 6 7 # @ParamType aType 8 # Get the header of the table.
9 - def getHeader(self, aType):
10 pass
11 12 # @ParamType aType 13 # Get the rows of a special object.
14 - def getRows(self, aType):
15 pass
16