1 19 20 package org.netbeans.modules.editor.errorstripe.apimodule; 21 22 import java.beans.PropertyChangeListener ; 23 import org.netbeans.spi.editor.errorstripe.UpToDateStatusProvider; 24 25 29 public abstract class SPIAccessor { 30 31 public static SPIAccessor DEFAULT; 32 33 34 public SPIAccessor() { 35 } 36 37 public static final SPIAccessor getDefault() { 38 return DEFAULT; 39 } 40 41 public abstract void addPropertyChangeListener(UpToDateStatusProvider provider, PropertyChangeListener l); 42 43 public abstract void removePropertyChangeListener(UpToDateStatusProvider provider, PropertyChangeListener l); 44 45 } 46 | Popular Tags |