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

action.TextField Maven / Gradle / Ivy

The newest version!
package action;

import annotation.Exec;
import constants.Constants.Arguments;
import manager.BuilderManager;

public class TextField
{

    public TextField()
    {
        new BuilderManager(this);
    }

    @Exec(js = "var textContent = " + Arguments.FIRST + ".textContent; \n" +
            "if(textContent !== '') {return textContent}\n" +
            "else {return " + Arguments.FIRST + ".value;}")
    public String getText;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy