Esempio n. 1
0
	def __create__(self, update):
		if self.classPath is None:
			self.classPath = String(str(self.__classpath)[2:-2]).replaceAll("', '", ';')
		
		if self.nativePath is None:
			self.nativePath = String(str(self.__nativepath)[2:-2]).replaceAll("', '", ';')
		
		Resource.__create__(self, update)
		
		for libRef in self.__libraryRefs:
			libRef.__create__(update)
Esempio n. 2
0
    def __create__(self, update):
        if self.classPath is None:
            self.classPath = String(str(self.__classpath)[2:-2]).replaceAll(
                "', '", ';')

        if self.nativePath is None:
            self.nativePath = String(str(self.__nativepath)[2:-2]).replaceAll(
                "', '", ';')

        Resource.__create__(self, update)

        for libRef in self.__libraryRefs:
            libRef.__create__(update)
Esempio n. 3
0
	def __create__(self, update):
		Resource.__create__(self, update)
		for name, prop in self.__properties.items():
			prop.__create__(update)
Esempio n. 4
0
	def __create__(self, update):
		Resource.__create__(self, update)
		self.__propertySet.update()
Esempio n. 5
0
 def __create__(self, update):
     Resource.__create__(self, update)
     self.__classloader.__create__(update)
Esempio n. 6
0
 def __create__(self, update):
     Resource.__create__(self, update)
     self.__deployedObject.__create__(update)
Esempio n. 7
0
 def __create__(self, update):
     Resource.__create__(self, update)
     for name, prop in self.__properties.items():
         prop.__create__(update)
Esempio n. 8
0
 def __create__(self, update):
     Resource.__create__(self, update)
     self.__propertySet.update()
Esempio n. 9
0
	def __create__(self, update):
		Resource.__create__(self, update)
		self.__classloader.__create__(update)
Esempio n. 10
0
	def __create__(self, update):
		Resource.__create__(self, update)
		self.__deployedObject.__create__(update)