You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2016/01/31 13:01:31 UTC

svn commit: r1727797 - /jmeter/trunk/src/protocol/ldap/org/apache/jmeter/protocol/ldap/config/gui/LdapConfigGui.java

Author: fschumacher
Date: Sun Jan 31 12:01:31 2016
New Revision: 1727797

URL: http://svn.apache.org/viewvc?rev=1727797&view=rev
Log:
Move constructor to the front and add javadoc.
Part of patch by Benoit Wiart.

Bugzilla Id: 58949

Modified:
    jmeter/trunk/src/protocol/ldap/org/apache/jmeter/protocol/ldap/config/gui/LdapConfigGui.java

Modified: jmeter/trunk/src/protocol/ldap/org/apache/jmeter/protocol/ldap/config/gui/LdapConfigGui.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/ldap/org/apache/jmeter/protocol/ldap/config/gui/LdapConfigGui.java?rev=1727797&r1=1727796&r2=1727797&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/ldap/org/apache/jmeter/protocol/ldap/config/gui/LdapConfigGui.java (original)
+++ jmeter/trunk/src/protocol/ldap/org/apache/jmeter/protocol/ldap/config/gui/LdapConfigGui.java Sun Jan 31 12:01:31 2016
@@ -96,6 +96,16 @@ public class LdapConfigGui extends Abstr
         this(true);
     }
 
+    /**
+     * Constructor which sets the displayName.
+     *
+     * @param displayName name of the compnent
+     */
+    public LdapConfigGui(boolean displayName) {
+        this.displayName = displayName;
+        init();
+    }
+
     @Override
     public String getLabelResource() {
         return "ldap_sample_title"; // $NON-NLS-1$
@@ -274,11 +284,6 @@ public class LdapConfigGui extends Abstr
         }
     }
 
-    public LdapConfigGui(boolean displayName) {
-        this.displayName = displayName;
-        init();
-    }
-
     /**
      * This will create the servername panel in the LdapConfigGui.
      */