Package de.lessvoid.nifty.loaderv2.types.helper

Source Code of de.lessvoid.nifty.loaderv2.types.helper.OnClickType

package de.lessvoid.nifty.loaderv2.types.helper;

import de.lessvoid.nifty.Nifty;
import de.lessvoid.nifty.NiftyMethodInvoker;

public class OnClickType {
  private String value;

  public OnClickType(final String valueParam) {
    this.value = valueParam;
  }

  public boolean isValid() {
    if (value == null) {
      return false;
    }

    return value.matches("\\w+\\((|\\w+(,\\s*\\w+)*)\\)");
  }

  public NiftyMethodInvoker getMethod(final Nifty nifty, final Object ... controlController) {
    return new NiftyMethodInvoker(nifty, value, controlController);
  }
}
TOP

Related Classes of de.lessvoid.nifty.loaderv2.types.helper.OnClickType

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.