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()