public interface ConsoleArgument extends HandlerPlugin<LinkedList<String>>
Console argument plugins discoverable at runtime must implement this
interface and be annotated with @Plugin
with attribute
Plugin.type()
= ConsoleArgument
.class. While it is possible
to create an console argument plugin merely by implementing this interface,
it is encouraged to instead extend AbstractConsoleArgument
, for
convenience.
Modifier and Type | Method and Description |
---|---|
void |
handle(LinkedList<String> args)
Handles the front of the given list of arguments.
|
context, getContext, setContext
getPriority, setPriority
compareTo
getInfo, setInfo
void handle(LinkedList<String> args)
Copyright © 2009–2015 SciJava. All rights reserved.