1 19 20 21 package org.netbeans.core.windows.persistence; 22 23 24 29 public interface PersistenceObserver { 30 31 32 35 public void modeConfigAdded(ModeConfig modeConfig); 36 37 40 public void modeConfigRemoved(String modeName); 41 42 48 public void topComponentRefConfigAdded( 49 String modeName, TCRefConfig tcRefConfig, String [] tcRefNames); 50 51 54 public void topComponentRefConfigRemoved(String tc_id); 55 56 59 public void groupConfigAdded(GroupConfig groupConfig); 60 61 64 public void groupConfigRemoved(String groupName); 65 66 70 public void topComponentGroupConfigAdded(String groupName, TCGroupConfig tcGroupConfig); 71 72 76 public void topComponentGroupConfigRemoved(String groupName, String tc_id); 77 } 78 79 | Popular Tags |