- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getFileModel (0.09 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingResult.java
this(); this.activeExternalProfiles.addAll(result.getActiveExternalProfiles()); this.effectiveModel = result.getEffectiveModel(); this.fileModel = result.getFileModel(); this.problems.addAll(result.getProblems()); for (String modelId : result.getModelIds()) { this.modelIds.add(modelId); this.rawModels.put(modelId, result.getRawModel(modelId));
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/FilterModelBuildingRequest.java
public FilterModelBuildingRequest setModelCache(ModelCache modelCache) { request.setModelCache(modelCache); return this; } @Override public Model getFileModel() { return request.getFileModel(); } @Override public ModelBuildingRequest setFileModel(Model fileModel) { request.setFileModel(fileModel); return this; } @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderException.java
return result.getEffectiveModel().getId(); } else if (result.getRawModel() != null) { return result.getRawModel().getId(); } else if (result.getFileModel() != null) { return result.getFileModel().getId(); } else { return ""; } } /** * Gets the problems that caused this exception. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java
*/ @Nonnull ModelSource getSource(); /** * Gets the file model. * * @return the file model, never {@code null}. */ @Nonnull Model getFileModel(); /** * Gets the file model + build pom transformation, without inheritance nor interpolation. * * @return The raw model, never {@code null}. */ @Nonnull Model getRawModel();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 3.2K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingResult.java
*/ List<String> getModelIds(); /** * * @return the file model * @since 4.0.0 */ Model getFileModel(); /** * Gets the assembled model. * * @return The assembled model, never {@code null}. */ Model getEffectiveModel(); /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.2K bytes - Viewed (0)