View Javadoc
1   package com.exsoinn.util.epf;
2   
3   /**
4    * Created by QuijadaJ on 5/24/2017.
5    */
6   public interface MutableContext extends Context {
7       void addMember(String pName, Context pContext);
8   
9       void addEntryToArray(Context pEntry);
10  }