Tabnine Logo
Parameter.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.apache.tools.ant.types.Parameter
constructor

Best Java code snippets using org.apache.tools.ant.types.Parameter.<init> (Showing top 9 results out of 315)

origin: org.apache.ant/ant

/**
 * Support for nested &lt;param&gt; tags.
 * @param key the key of the parameter
 * @param value the value of the parameter
 */
public void addParam(String key, Object value) {
  Parameter par = new Parameter();
  par.setName(key);
  par.setValue(String.valueOf(value));
  configParameter.add(par);
}
origin: pmd/pmd

final Parameter parameter = new Parameter();
parameter.setName("encoding");
parameter.setValue(charset.name());
origin: com.google.javascript/closure-compiler

/**
 * Creates a new {@code <define/>} nested element. Supports name and value
 * attributes.
 */
public Parameter createDefine() {
 Parameter param = new Parameter();
 defineParams.add(param);
 return param;
}
origin: org.scala-js/closure-compiler-java-6

/**
 * Creates a new {@code <entrypoint/>} nested element. Supports name
 * attribute.
 */
public Parameter createEntryPoint() {
 Parameter param = new Parameter();
 entryPointParams.add(param);
 return param;
}
origin: com.google.javascript/closure-compiler

/**
 * Creates a new {@code <entrypoint/>} nested element. Supports name
 * attribute.
 */
public Parameter createEntryPoint() {
 Parameter param = new Parameter();
 entryPointParams.add(param);
 return param;
}
origin: org.scala-js/closure-compiler-java-6

/**
 * Creates a new {@code <define/>} nested element. Supports name and value
 * attributes.
 */
public Parameter createDefine() {
 Parameter param = new Parameter();
 defineParams.add(param);
 return param;
}
origin: net.sourceforge.pmd/pmd-core

final Parameter parameter = new Parameter();
parameter.setName("encoding");
parameter.setValue(charset.name());
origin: org.codehaus.mojo/nbm-maven-plugin

Parameter included = new Parameter();
included.setName( "includeClusters" );
included.setValue( "" );
Parameter excluded = new Parameter();
excluded.setName( "excludeClusters" );
excluded.setValue( "" );
Parameter exModules = new Parameter();
exModules.setName( "excludeModules" );
exModules.setValue( "" );
origin: mojohaus/nbm-maven-plugin

Parameter included = new Parameter();
included.setName( "includeClusters" );
included.setValue( "" );
Parameter excluded = new Parameter();
excluded.setName( "excludeClusters" );
excluded.setValue( "" );
Parameter exModules = new Parameter();
exModules.setName( "excludeModules" );
exModules.setValue( "" );
org.apache.tools.ant.typesParameter<init>

Popular methods of Parameter

  • getName
    Get the name attribute.
  • getValue
    Get the value attribute.
  • setName
    Set the name attribute.
  • setValue
    Set the value attribute.
  • getType
    Get the type attribute.

Popular in Java

  • Creating JSON documents from java classes using gson
  • setScale (BigDecimal)
  • notifyDataSetChanged (ArrayAdapter)
  • onRequestPermissionsResult (Fragment)
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • Reference (javax.naming)
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now