Class DefaultCompilerArgsConfig
- java.lang.Object
-
- edu.wpi.first.nativeutils.configs.impl.DefaultCompilerArgsConfig
-
- All Implemented Interfaces:
CompilerArgsConfig
public class DefaultCompilerArgsConfig extends java.lang.Object implements CompilerArgsConfig
-
-
Constructor Summary
Constructors Constructor Description DefaultCompilerArgsConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<java.lang.String>getArgs()java.util.List<java.lang.String>getDebugArgs()java.util.List<java.lang.String>getReleaseArgs()voidsetArgs(java.util.List<java.lang.String> args)voidsetDebugArgs(java.util.List<java.lang.String> debugArgs)voidsetReleaseArgs(java.util.List<java.lang.String> releaseArgs)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface edu.wpi.first.nativeutils.configs.CompilerArgsConfig
apply
-
-
-
-
Method Detail
-
getArgs
public java.util.List<java.lang.String> getArgs()
- Specified by:
getArgsin interfaceCompilerArgsConfig- Returns:
- the args
-
setArgs
public void setArgs(java.util.List<java.lang.String> args)
- Specified by:
setArgsin interfaceCompilerArgsConfig- Parameters:
args- the args to set
-
getDebugArgs
public java.util.List<java.lang.String> getDebugArgs()
- Specified by:
getDebugArgsin interfaceCompilerArgsConfig- Returns:
- the debugArgs
-
setDebugArgs
public void setDebugArgs(java.util.List<java.lang.String> debugArgs)
- Specified by:
setDebugArgsin interfaceCompilerArgsConfig- Parameters:
debugArgs- the debugArgs to set
-
getReleaseArgs
public java.util.List<java.lang.String> getReleaseArgs()
- Specified by:
getReleaseArgsin interfaceCompilerArgsConfig- Returns:
- the releaseArgs
-
setReleaseArgs
public void setReleaseArgs(java.util.List<java.lang.String> releaseArgs)
- Specified by:
setReleaseArgsin interfaceCompilerArgsConfig- Parameters:
releaseArgs- the releaseArgs to set
-
-