@@ -385,18 +297,6 @@ public class ClassAndMethodContainer {
returnthis.analysisControllerLoadFromFile;
}
publicMethodgetPluginDependenciesMethod(){
returnthis.pluginDependenciesMethod;
}
publicMethodgetDisplayDescriptionMethod(){
returnthis.displayDescriptionMethod;
}
publicMethodgetRepositoryDependenciesMethod(){
returnthis.repositoryDependenciesMethod;
}
publicMethodgetPluginProgrammaticOnlyMethod(){
returnthis.pluginProgrammaticOnlyMethod;
}
...
...
@@ -465,23 +365,6 @@ public class ClassAndMethodContainer {
returnnull;
}
/**
* This method can be used to invoke a given method with no parameters, without having to mind about the exceptions. If an exception occurs, the given default
* value will be returned. A call to this method is the same as {@link ClassAndMethodContainer#invokeMethod(Method, Object, Object, Object...)} with
* {@code new Object[0]} as parameters.
*
* @param method
* The method to be invoked.
* @param obj
* The object on which the method will be invoked.
* @param defaultReturn
* The default return value in case of an exception.
* @return The result of the invoked method if everything went well, the default value otherwise.
* This method can be used to invoke a given <b>class</b>-method with no parameters, without having to mind about the exceptions. If an exception occurs, the
* given default value will be returned. A call to this method is the same as {@link ClassAndMethodContainer#invokeMethod(Method, Object, Object, Object...)}