Ejemplo n.º 1
0
        public Entry(MainFormModel parent)
        {
            this._privateName = "";
            this._publicName = "";
            this._line = "";
            this._accessModifier = "public";
            this._dataType = "string";
            this._variableName = "";
            this._defaultValue = "";
            this._suffixComment = "";
            this._xmlComments = null;
            this._attributes = null;
            this._comments = null;
            this._defaultXmlComments = null;

            this._parent = parent;
            this._defaultXmlComments = new ArrayList();
            this._xmlComments = new ArrayList();
            this._attributes = new ArrayList();
            this._comments = new ArrayList();
            this._defaultXmlComments.Add("///<summary> TODO: Documentation</summary>");
        }
Ejemplo n.º 2
0
 public MainFormViewPresenter(IMainFormView view)
 {
     this._view = view;
     this._model = new MainFormModel();
     this.Parse(Resources.SampleInput, Resources.SampleNotify == "true", Resources.SampleAttribute);
 }