- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 46 for getChild (0.07 seconds)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/ObjectBasedValueSource.java
/** * Wraps an object, providing reflective access to the object graph of which the * supplied object is the root. Expressions like 'child.name' will translate into * 'rootObject.getChild().getName()' for non-boolean properties, and * 'rootObject.getChild().isName()' for boolean properties. * * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0")
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 3.4K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportingConverter.java
if (configuration == null) { configuration = new Xpp3Dom("configuration", location); sitePlugin.setConfiguration(configuration); } Xpp3Dom reportPlugins = configuration.getChild("reportPlugins"); if (reportPlugins != null) { // new-style report configuration already present: warn since this new style has been deprecatedCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jan 10 07:09:12 GMT 2025 - 9.4K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/java/JavaToolchainFactory.java
jtc.addProvideToken(key, matcher); } // populate the configuration section Xpp3Dom dom = (Xpp3Dom) model.getConfiguration(); Xpp3Dom javahome = dom != null ? dom.getChild(JavaToolchainImpl.KEY_JAVAHOME) : null; if (javahome == null) { throw new MisconfiguredToolchainException(Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 4.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedConfigurationConverter.java
for (int i = 0, size = configuration.getChildCount(); i < size; i++) { final PlexusConfiguration element = configuration.getChild(i); final String propertyName = fromXML(element.getName()); Class<?> valueType; try { valueType = getClassForImplementationHint(null, element, loader);
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Jul 17 07:40:49 GMT 2025 - 6.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/configuration/internal/DefaultBeanConfigurator.java
+ configuration.getClass().getName() + ")"); } if (request.getConfigurationElement() != null) { plexusConfig = plexusConfig.getChild(request.getConfigurationElement()); } ClassLoader classLoader = request.getClassLoader(); if (classLoader == null) { classLoader = request.getBean().getClass().getClassLoader();
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 8.3K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/lease/DirectoryCacheEntryTest.java
assertTrue(entry.hasChild(childName)); assertEquals(1, entry.getChildren().size()); DirectoryCacheEntry.FileInfo fileInfo = entry.getChild(childName); assertNotNull(fileInfo); assertEquals(childName, fileInfo.getName()); assertEquals(size, fileInfo.getSize()); assertEquals(lastModified, fileInfo.getLastModified());Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 01:47:47 GMT 2025 - 8.4K bytes - Click Count (0) -
compat/maven-toolchain-builder/src/test/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilderTest.java
result.getEffectiveToolchains().getToolchains().get(0).getConfiguration(); assertEquals( interpolatedValue, toolchainConfiguration.getChild("jdkHome").getValue()); assertNotNull(result.getProblems()); assertEquals(0, result.getProblems().size()); } @Test
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 14K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java
} } // Children for (int i = 0, l = dom.getChildCount(); i < l; i++) { visit(dom.getChild(i)); } } } private void visit(Extension extension) { if (extension != null) { String org, val; // GroupIdCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 43.1K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileInjector.java
if (profile != null) { merger.mergeModelBase(model, profile); if (profile.getBuild() != null) { if (model.getBuild() == null) { model.setBuild(new Build()); } merger.mergeBuildBase(model.getBuild(), profile.getBuild()); } } } /** * ProfileModelMerger */
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 8K bytes - Click Count (0) -
compat/maven-model/src/test/java/org/apache/maven/model/ModelTest.java
build.setOutputDirectory("myOutputDirectory"); model.setBuild(build); Build build2 = model.getBuild(); assertNotNull(build2); assertEquals("myOutputDirectory", build2.getOutputDirectory()); model.setBuild(null); assertNull(model.getBuild()); } @Test void testEqualsNullSafe() { assertNotEquals(null, new Model());
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Dec 16 08:09:30 GMT 2025 - 2.4K bytes - Click Count (0)