1 15 package org.apache.hivemind.internal; 16 17 import org.apache.commons.logging.Log; 18 import org.apache.hivemind.ErrorLog; 19 import org.apache.hivemind.Locatable; 20 21 26 public interface ExtensionPoint extends Locatable 27 { 28 31 public String getExtensionPointId(); 32 33 36 public Module getModule(); 37 38 46 47 public boolean visibleToModule(Module module); 48 49 52 53 public Log getLog(); 54 55 61 62 public ErrorLog getErrorLog(); 63 64 } | Popular Tags |