This section describes how to create an Action class with Eclipse.
com.neotys.extensions.action.Action
.MyAction
.MyAction
class.For methods getMinimumNeoLoadVersion
and getMaximumNeoLoadVersion
,
replace the line return null;
with return Optional.absent();
META-INF/services/com.neotys.extensions.action.Action
:META-INF
in the Folder name field and click Finish.services
in the META-INF
folder.com.neotys.extensions.action.Action
in the folder services.com.neotys.extensions.action.Action
file to edit it adding the full qualified name of the Action class (i.e. package and class name).@Override
default boolean supportScreenshot() {
return true;
}