예제 #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)
예제 #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)
예제 #3
0
	def __create__(self, update):
		Resource.__create__(self, update)
		for name, prop in self.__properties.items():
			prop.__create__(update)
예제 #4
0
	def __create__(self, update):
		Resource.__create__(self, update)
		self.__propertySet.update()
예제 #5
0
 def __create__(self, update):
     Resource.__create__(self, update)
     self.__classloader.__create__(update)
예제 #6
0
 def __create__(self, update):
     Resource.__create__(self, update)
     self.__deployedObject.__create__(update)
예제 #7
0
 def __create__(self, update):
     Resource.__create__(self, update)
     for name, prop in self.__properties.items():
         prop.__create__(update)
예제 #8
0
 def __create__(self, update):
     Resource.__create__(self, update)
     self.__propertySet.update()
예제 #9
0
	def __create__(self, update):
		Resource.__create__(self, update)
		self.__classloader.__create__(update)
예제 #10
0
	def __create__(self, update):
		Resource.__create__(self, update)
		self.__deployedObject.__create__(update)