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

jdplus.toolkit.desktop.plugin.ui.properties.l2fprod.UserVariable Maven / Gradle / Ivy

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package jdplus.toolkit.desktop.plugin.ui.properties.l2fprod;

/**
 *
 * @author Jean Palate
 */
public class UserVariable {
        private final String var_;

    public UserVariable(String name) {
        var_ = name;
     }

    public String getName() {
        return var_;
    }

    @Override
    public String toString() {
        return (var_ == null) ? "Unused" : var_;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy