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

com.github.rcaller.scriptengine.LanguageElement Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version

package com.github.rcaller.scriptengine;


public class LanguageElement {
    
    private String objectName;

    public String getObjectName() {
        return objectName;
    }

    public void setObjectName(String objectName) {
        this.objectName = objectName;
    }
    
    public LanguageElement(String objectName){
        this.objectName = objectName;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy