From 784a0f4ee5ba9ed0a32ffa09a0657fff6fb1f245 Mon Sep 17 00:00:00 2001 From: Fabian Becker Date: Tue, 21 Jan 2014 22:02:40 +0100 Subject: [PATCH] Fix syntax error. --- .../optimization/modules/PSOParameters.java | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/src/eva2/optimization/modules/PSOParameters.java b/src/eva2/optimization/modules/PSOParameters.java index 8b6c03d8..b3529d23 100644 --- a/src/eva2/optimization/modules/PSOParameters.java +++ b/src/eva2/optimization/modules/PSOParameters.java @@ -11,6 +11,7 @@ import eva2.optimization.strategies.InterfaceOptimizer; import eva2.optimization.strategies.ParticleSwarmOptimization; import eva2.tools.SelectedTag; import eva2.tools.Serializer; +import eva2.util.annotation.Description; import java.io.FileInputStream; import java.io.FileNotFoundException; @@ -18,14 +19,8 @@ import java.io.Serializable; import java.util.logging.Level; /** - * The class gives access to all PSO parameters for the EvA - * top level GUI. - * Created by IntelliJ IDEA. - * User: streiche - * Date: 16.11.2004 - * Time: 17:58:37 - * To change this template use File | Settings | File Templates. */ +@Description("Particle Swarm Optimization by Kennedy and Eberhart.") public class PSOParameters extends AbstractOptimizationParameters implements InterfaceOptimizationParameters, Serializable { /** @@ -64,15 +59,6 @@ public class PSOParameters extends AbstractOptimizationParameters implements Int return new PSOParameters(this); } - /** - * This method returns a global info string - * - * @return description - */ - public static String globalInfo() { - return ParticleSwarmOptimization.globalInfo(); - } - /** * Take care that all properties which may be hidden (and currently are) send a "hide" message to the Java Bean properties. * This is called by PropertySheetPanel in use with the GenericObjectEditor.