Method from org.apache.jmeter.ejb.jndi.config.MethodConfig Detail: |
public void addConfigElement(ConfigElement config) {
}
|
public Object clone() {
MethodConfig newConfig = new MethodConfig();
configureClone(newConfig);
return newConfig;
}
|
public String getClassLabel() {
return JMeterUtils.getResString("jndi_method_title");
}
|
public MethodConfigGui getGui() {
return (MethodConfigGui)this.getProperty(METHOD_CONFIG_GUI);
}
|
public Class getGuiClass() {
return org.apache.jmeter.ejb.jndi.config.gui.MethodConfigGui.class;
}
|
public Method getHomeMethod() {
return homeMethod;
}
|
public String[] getMethodHomeList() {
String[] strings = (String[])this.getProperty(METHOD_HOME_LIST);
return strings;
}
|
public String getMethodHomeName() {
String string = (String)this.getProperty(METHOD_HOME_NAME);
if(catClass.isDebugEnabled())
{
catClass.debug("getMethodHomeName1 : method home name - " + string);
}
return string;
}
|
public Class[] getMethodHomeParms() {
Class[] classes= (Class[])this.getProperty(METHOD_HOME_PARMS);
return classes;
}
|
public String[] getMethodRemoteList() {
String[] strings = (String[])this.getProperty(METHOD_REMOTE_LIST);
return strings;
}
|
public String getMethodRemoteName() {
String string = (String)this.getProperty(METHOD_REMOTE_NAME);
if(catClass.isDebugEnabled())
{
catClass.debug("getMethodRemoteName1 : method remote name - " + string);
}
return string;
}
|
public Class[] getMethodRemoteParms() {
Class[] classes= (Class[])this.getProperty(METHOD_REMOTE_PARMS);
return classes;
}
|
public boolean getReflectionStatus() {
return reflectionStatus;
}
|
public Object getRemoteInterfaceList() {
Object ref = this.getProperty(METHOD_REMOTE_INTERFACE_LIST);
if(catClass.isDebugEnabled())
{
catClass.debug("getRemoteInterfaceList1 : remote interface list - " +
ref);
}
return ref;
}
|
public Object getRemoteInterfaceType() {
Object ref = this.getProperty(METHOD_REMOTE_INTERFACE_TYPE);
if(catClass.isDebugEnabled())
{
catClass.debug("getRemoteInterfaceType1 : remote interface - " +
ref);
}
return ref;
}
|
public Method getRemoteMethod() {
return remoteMethod;
}
|
public int getState() {
return state;
}
|
public void setGui(MethodConfigGui gui) {
this.putProperty(METHOD_CONFIG_GUI, gui);
}
|
public void setHomeMethod(Method aMethod) {
homeMethod = aMethod;
}
|
public void setMethodHomeList(String[] list) {
this.putProperty(METHOD_HOME_LIST, list);
}
|
public void setMethodHomeName(String string) {
if(catClass.isDebugEnabled())
{
catClass.debug("setMethodHomeName1 : method home name - " + string);
}
this.putProperty(METHOD_HOME_NAME, string);
}
|
public void setMethodHomeParms(Class[] list) {
this.putProperty(METHOD_HOME_PARMS, list);
}
|
public void setMethodRemoteList(String[] list) {
this.putProperty(METHOD_REMOTE_LIST, list);
}
|
public void setMethodRemoteName(Object ref) {
if(catClass.isDebugEnabled())
{
catClass.debug("setMethodRemoteName1 : method remote name - " + ref);
}
this.putProperty(METHOD_REMOTE_NAME, ref);
}
|
public void setMethodRemoteParms(Class[] list) {
this.putProperty(METHOD_REMOTE_PARMS, list);
}
|
public void setReflectionStatus(boolean status) {
reflectionStatus = status;
}
|
public void setRemoteInterfaceList(Object ref) {
if(catClass.isDebugEnabled())
{
catClass.debug("setRemoteInterfaceList1 : remote interface list - " +
ref);
}
this.putProperty(METHOD_REMOTE_INTERFACE_LIST, ref);
}
|
public void setRemoteInterfaceType(Object ref) {
if(catClass.isDebugEnabled())
{
catClass.debug("setRemoteInterfaceType1 : remote interface - " +
ref);
}
this.putProperty(METHOD_REMOTE_INTERFACE_TYPE, ref);
}
|
public void setRemoteMethod(Method aMethod) {
remoteMethod = aMethod;
}
|
public void setState(int current) {
state = current;
}
|