Interface ToolchainsBuildingRequest
- All Known Implementing Classes:
- DefaultToolchainsBuildingRequest
public interface ToolchainsBuildingRequest
Collects toolchains that control the building of effective toolchains.
- Since:
- 3.3.0
- 
Method SummaryModifier and TypeMethodDescriptionGets the global toolchains source.Gets the user toolchains source.setGlobalToolchainsSource(Source globalToolchainsSource) Sets the global toolchains source.setUserToolchainsSource(Source userToolchainsSource) Sets the user toolchains source.
- 
Method Details- 
getGlobalToolchainsSourceSource getGlobalToolchainsSource()Gets the global toolchains source.- Returns:
- The global toolchains source or nullif none.
 
- 
setGlobalToolchainsSourceSets the global toolchains source. If both user toolchains and a global toolchains are given, the user toolchains take precedence.- Parameters:
- globalToolchainsSource- The global toolchains source, may be- nullto disable global toolchains.
- Returns:
- This request, never null.
 
- 
getUserToolchainsSourceSource getUserToolchainsSource()Gets the user toolchains source.- Returns:
- The user toolchains source or nullif none.
 
- 
setUserToolchainsSourceSets the user toolchains source. If both user toolchains and a global toolchains are given, the user toolchains take precedence.- Parameters:
- userToolchainsSource- The user toolchains source, may be- nullto disable user toolchains.
- Returns:
- This request, never null.
 
 
-