Example #1
0
        public void WriteObjectCreation(BaseObject obj)
        {
            String str = obj.Id + " = Create:" + obj.GetType().Name + "(" + ScriptWriter.GetStringOf(obj.Type) + ")";

            Sw.WriteLine(str);
        }
Example #2
0
        public ScriptWriter(BaseObject obj)
        {
            Obj = obj;

            Sw = new StreamWriter(File);
        }
Example #3
0
 public String GetDeletionStr(BaseObject obj)
 {
     return "Do you really want to remove " + obj.GetType().Name + " :: " + obj.Type + " :: ?";
 }