1 19 package org.netbeans.modules.xml.core.sync; 20 21 28 public abstract class SyncRepresentation implements Representation { 29 30 private final Synchronizator sync; 31 32 33 public SyncRepresentation(Synchronizator sync) { 34 this.sync = sync; 35 } 36 37 protected final Synchronizator getSynchronizator() { 38 return sync; 39 } 40 41 45 protected final void changed(Class klass) { 46 sync.representationChanged(klass); 47 } 48 49 52 public boolean isValid() { 53 return true; 54 } 55 } 56 | Popular Tags |