1 17 package org.columba.core.component.api; 18 19 import org.apache.commons.cli.CommandLine; 20 import org.columba.api.plugin.IExtensionInterface; 21 22 29 public interface IComponentPlugin extends IExtensionInterface { 30 31 public void init(); 32 33 public void postStartup(); 34 35 public void registerCommandLineArguments(); 36 37 public void handleCommandLineParameters(CommandLine commandLine); 40 } 41 | Popular Tags |