Lines Matching refs:self
83 def __init__(self, optionalRelease, mandatoryRelease, compiler_flag):
84 self.optional = optionalRelease
85 self.mandatory = mandatoryRelease
86 self.compiler_flag = compiler_flag
88 def getOptionalRelease(self):
93 return self.optional
95 def getMandatoryRelease(self):
101 return self.mandatory
103 def __repr__(self):
104 return "_Feature" + repr((self.optional,
105 self.mandatory,
106 self.compiler_flag))