Class ParametersFactory
java.lang.Object
org.jboss.weld.environment.se.beans.ParametersFactory
The simple bean that will hold the command line arguments and make them
available by injection (using the @Parameters binding). It's initialised by
the StartMain class before your main app is initialised.
- Author:
- Peter Royle
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
ParametersFactory
public ParametersFactory()
-
-
Method Details
-
getArgs
Producer method for the injectable command line args.- Returns:
- The command line arguments.
-
getArgsAsArray
Producer method for the injectable command line args.- Returns:
- The command line arguments.
-
setArgs
StartMain passes in the command line args here.- Parameters:
args- The command line arguments. If null is given then an empty array will be used instead.
-