1 # Create signatures for given predicates and connections. 2 -class SignatureReader(object): 3 4 # @ParamType aPredicate 5 # Create a signature for a given predicate. 6 - def createSignature(self, aPredicate): 7 pass 8 9 # @ParamType aHead 10 # @ParamType aTarget 11 # Create a signature for the given connecting predicate. 12 - def createSignature(self, aHead, aTarget): 13 pass 14