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

Source Code for Module rubacon.readers.ModelReader

 1  # Read information of the model from the storage. 
2 -class ModelReader(object):
3 # The default storage. 4 ___sTORAGE = 'db.model' 5 6 # @ParamType aName 7 # Get a list of all classes connected with the given one.
8 - def getAdjacentClasses(self, aName):
9 pass
10 11 # Get a list containing all associations.
12 - def getAllAssociations(self):
13 pass
14 15 # Get a list with all class names.
16 - def getAllClasses(self):
17 pass
18 19 # @ParamType aName 20 # Get all outgoing edges for a class.
21 - def getAssociationsForClass(self, aName):
22 pass
23 24 # @ParamType aName 25 # Get all attributes of a given class.
26 - def getAttributes(self, aName):
27 pass
28 29 # @ParamType aName string 30 # Get the head of an association
31 - def getHead(self, aName):
32 pass
33 34 # @ReturnType string 35 # @ParamType aName string 36 # Get the target of an association.
37 - def getTarget(self, aName):
38 pass
39