Example #1
0
	def __init__(self, isAbstract, isImplementation, methodLine):
		ContainedEntity.__init__(self)
		InvokeableEntity.__init__(self, isImplementation, methodLine)
		self.log = Logger().get_instance(self)
		self.sourceLocationColumnIndex=3
		self.cols = self.line.split(";")
		self.isAbstract = isAbstract
		self.isAbstractCalculated = False
		self.decomposeData()

		self.removeTemplateParametersFromName()
		self.decomposeVisibility()
		self.ownerTemplateParameters=""

		if (self.namespaceName != None) and (self.namespaceName != ""):
			self.owner = self.namespaceName + "::" + self.owner

		self.getParentReference().setReferencedName(self.owner)

		if (self.name == self.owner) or (self.name == ("~" + self.owner)):
			self.getTypeReference()
			self.typeReference.setReferencedName("")
Example #2
0
    def __init__(self, isAbstract, isImplementation, methodLine):
        ContainedEntity.__init__(self)
        InvokeableEntity.__init__(self, isImplementation, methodLine)
        self.log = Logger().get_instance(self)
        self.sourceLocationColumnIndex = 3
        self.cols = self.line.split(";")
        self.isAbstract = isAbstract
        self.isAbstractCalculated = False
        self.decomposeData()

        self.removeTemplateParametersFromName()
        self.decomposeVisibility()
        self.ownerTemplateParameters = ""

        if (self.namespaceName != None) and (self.namespaceName != ""):
            self.owner = self.namespaceName + "::" + self.owner

        self.getParentReference().setReferencedName(self.owner)

        if (self.name == self.owner) or (self.name == ("~" + self.owner)):
            self.getTypeReference()
            self.typeReference.setReferencedName("")
Example #3
0
	def __init__(self, attrLine):
		ContainedEntity.__init__(self)
		AnAccessibleEntity.__init__(self, attrLine)
		self.log = Logger().get_instance(self)
Example #4
0
 def __init__(self, attrLine):
     ContainedEntity.__init__(self)
     AnAccessibleEntity.__init__(self, attrLine)
     self.log = Logger().get_instance(self)