Exemplo n.º 1
0
 void RefreshValue()
 {
     if (objectData.listData != null)
     {
         if (editorList == null)
         {
             editorList = new EditorList(objectData.listData, level + 1);
         }
         else
         {
             editorList.RefreshValue(objectData.listData);
         }
     }
     else if (objectData.arrayData != null)
     {
         if (editorArray == null)
         {
             editorArray = new EditorArray(objectData.arrayData, level + 1);
         }
         else
         {
             editorArray.RefreshValue(objectData.arrayData);
         }
     }
     else if (objectData.dictionaryData != null)
     {
         if (editorDictionary == null)
         {
             editorDictionary = new EditorDictionary(objectData.dictionaryData, level + 1);
         }
         else
         {
             editorDictionary.RefreshValue(objectData.dictionaryData);
         }
     }
     else if (objectData.classData != null)
     {
         if (editorClass == null)
         {
             editorClass = new EditorClass(objectData.classData, level + 1, false, name);
             editorClass.GetEditorField();
         }
         else
         {
             editorClass.RefreshValue(objectData.classData);
         }
     }
 }
Exemplo n.º 2
0
 public EditorInstance(object context)
 {
     info = new EditorClass(context, context.GetType(), -1, true, context.GetType().Name);
     info.GetEditorField();
     info.GetEditorMethod();
 }