All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.clickntap.smart.SmartMethod Maven / Gradle / Ivy

There is a newer version: 1.30
Show newest version
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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy