Example #1
0
class PotOfTeaProxy(PotOfTeaInterface):

    potOfTea = None

    def pourTea(self):
        self.potOfTea = PotOfTea()
        return self.potOfTea.pourTea()
Example #2
0
class PotOfTeaProxy(PotOfTeaInterface):

	potOfTea = None

	def pourTea(self) :
		self.potOfTea = PotOfTea()
		return self.potOfTea.pourTea()
Example #3
0
 def pourTea(self):
     self.potOfTea = PotOfTea()
     return self.potOfTea.pourTea()
Example #4
0
	def pourTea(self) :
		self.potOfTea = PotOfTea()
		return self.potOfTea.pourTea()