コード例 #1
0
ファイル: templateFile.py プロジェクト: umutboz/code-gen-lib
 def __init__(self,
              name,
              dict,
              output_file,
              is_child_template=False,
              parent_mustache=""):
     Base.__init__(self)
     self.name = name
     self.dict = dict
     self.outputFile = output_file
     self.isChildTemplate = is_child_template
     self.parentMustache = parent_mustache
コード例 #2
0
 def __init__(self, source, output_path, is_online=False):
     Base.__init__(self)
     self.source = source
     self.outputPath = output_path
     self.isOnline = is_online
コード例 #3
0
 def __init__(self, name, templates_files, template_folders=[], output_root_path=pathname):
     Base.__init__(self)
     self.name = name
     self.templateFiles = templates_files
     self.outputRootPath = output_root_path
     self.templateFolders = template_folders
コード例 #4
0
 def __init__(self, path=None):
     Base.__init__(self)
     self._path = path
コード例 #5
0
 def __init__(self, url=None):
     Base.__init__(self)
     self._url = url
コード例 #6
0
 def __init__(self):
     Base.__init__(self)