com.clickntap.smart.SmartMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Stripecube Show documentation
Show all versions of Stripecube Show documentation
Stripecube is an open source Java framework for Web Applications
package com.clickntap.smart;
import org.dom4j.Element;
public class SmartMethod extends SmartAction {
private String name;
public SmartMethod(String name, Element element) {
super(element);
this.name = name;
}
public String getName() {
return name;
}
}