1 19 package org.netbeans.modules.xml.core.sync; 20 21 27 public interface Synchronizator { 28 29 30 public void representationChanged(Class type); 31 32 33 public boolean isInSync(); 34 35 39 public void addRepresentation(Representation rep); 40 41 45 public void removeRepresentation(Representation rep); 46 47 51 public Representation getPrimaryRepresentation(); 52 53 54 57 public void postRequest(Runnable request); 58 59 } 60 | Popular Tags |