Package de.lessvoid.nifty

Examples of de.lessvoid.nifty.NiftyMethodInvoker


  private NiftyMethodInvoker onEndEffect;

  public void init(final Nifty nifty, final LinkedList < Object > controllers, final Properties parameter) {
    String onStartEffectString = parameter.getProperty("onStartEffect");
    if (onStartEffectString != null) {
      onStartEffect = new NiftyMethodInvoker(nifty, onStartEffectString, controllers.toArray());
    }
    String onEndEffectString = parameter.getProperty("onEndEffect");
    if (onEndEffectString != null) {
      onEndEffect = new NiftyMethodInvoker(nifty, onEndEffectString, controllers.toArray());
    }
  }
View Full Code Here


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

  public NiftyMethodInvoker getMethod(final Nifty nifty, final Object ... controlController) {
    return new NiftyMethodInvoker(nifty, value, controlController);
  }
View Full Code Here

TOP

Related Classes of de.lessvoid.nifty.NiftyMethodInvoker

Copyright © 2018 www.massapicom. 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.