/**
  * 
  *
  * @return MMarkupElementView
  */
 public function __construct()
 {
     parent::__construct();
     $this->element = null;
     $this->text = null;
     $this->properties = new MMutableDictionary();
     $this->indentsCode = true;
     $this->indentLevel = 0;
     $this->shouldAppendEmptyLine = false;
 }
 /**
  * 
  *
  * @return MPlainTextView
  */
 public function __construct(MString $text)
 {
     parent::__construct();
     $this->text = $text;
 }
示例#3
0
文件: view.php 项目: vanie3/appland
 public function __construct()
 {
     parent::__construct();
 }