Home » jakarta-jmeter-2.3.4_src » org.apache.jmeter.protocol.ldap.config.gui » [javadoc | source]
org.apache.jmeter.protocol.ldap.config.gui
public class: LDAPArgument [javadoc | source]
java.lang.Object
   org.apache.jmeter.testelement.AbstractTestElement
      org.apache.jmeter.protocol.ldap.config.gui.LDAPArgument

All Implemented Interfaces:
    Serializable, TestElement

Class representing an argument. Each argument consists of a name/value and opcode combination, as well as (optional) metadata. author Dolf Smits(Dolf.Smits@Siemens.com) created Aug 09 2003 11:00 AM company Siemens Netherlands N.V.. Based on the work of: author Michael Stover author Mark Walsh
Constructor:
 public LDAPArgument() 
 public LDAPArgument(String name,
    String value,
    String opcode) 
    Create a new Argument with the specified name and value, and no metadata.
    Parameters:
    name - the argument name
    value - the argument value
 public LDAPArgument(String name,
    String value,
    String opcode,
    String metadata) 
    Create a new Argument with the specified name, value, and metadata.
    Parameters:
    name - the argument name
    value - the argument value
    metadata - the argument metadata
Method from org.apache.jmeter.protocol.ldap.config.gui.LDAPArgument Summary:
getMetaData,   getName,   getOpcode,   getValue,   setMetaData,   setName,   setOpcode,   setValue
Methods from org.apache.jmeter.testelement.AbstractTestElement:
addProperty,   addTestElement,   canRemove,   clear,   clearTemporary,   clone,   emptyTemporary,   equals,   getName,   getProperty,   getPropertyAsBoolean,   getPropertyAsBoolean,   getPropertyAsDouble,   getPropertyAsFloat,   getPropertyAsInt,   getPropertyAsLong,   getPropertyAsString,   getThreadContext,   getThreadName,   isEnabled,   isRunningVersion,   isTemporary,   logProperties,   mergeIn,   nextIsNull,   propertyIterator,   recoverRunningVersion,   removeProperty,   setName,   setProperty,   setProperty,   setRunningVersion,   setTemporary,   setThreadContext,   setThreadName,   threadFinished,   threadStarted,   traverse,   traverseCollection,   traverseMap,   traverseProperty
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.jmeter.protocol.ldap.config.gui.LDAPArgument Detail:
 public String getMetaData() 
    Gets the Meta Data attribute of the Argument.
 public String getName() 
    Get the name of the Argument.
 public String getOpcode() 
    Gets the opcode of the Argument object.
 public String getValue() 
    Gets the value of the Argument object.
 public  void setMetaData(String newMetaData) 
    Sets the Meta Data attribute of the Argument.
 public  void setName(String newName) 
    Set the name of the Argument.
 public  void setOpcode(String newOpcode) 
    Sets the opcode of the Argument.
 public  void setValue(String newValue) 
    Sets the value of the Argument.