- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for StringModelSource (0.12 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/StringModelSource.java
* * * @deprecated instead use {@link StringSource} */ @Deprecated public class StringModelSource extends StringSource implements ModelSource { /** * Creates a new model source backed by the specified string. * * @param pom The POM's string representation, may be empty or {@code null}. */ public StringModelSource(CharSequence pom) { this(pom, null); } /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/building/DefaultModelBuilderTest.java
throws UnresolvableModelException { switch (dependency.getManagementKey()) { case BASE1_ID: return new StringModelSource(BASE1); case BASE2_ID: return new StringModelSource(BASE2); } return null; } } static class BaseModelResolver implements ModelResolver { @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16.9K bytes - Viewed (0)