Package org.projectforge.scripting

Examples of org.projectforge.scripting.ScriptParameter


  }

  private void addParameter(final String parameterName, final ScriptParameterType type)
  {
    if (StringUtils.isNotBlank(parameterName) == true && type != null) {
      scriptParameters.add(new ScriptParameter(parameterName, type));
    }
  }
View Full Code Here

TOP

Related Classes of org.projectforge.scripting.ScriptParameter

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.