Uses of Class
org.apache.maven.archetype.model.Source
-
Packages that use Source Package Description org.apache.maven.archetype.model org.apache.maven.archetype.model.io.xpp3 -
-
Uses of Source in org.apache.maven.archetype.model
Fields in org.apache.maven.archetype.model with type parameters of type Source Modifier and Type Field Description private java.util.List<Source>
ArchetypeModel. sources
Field sources.private java.util.List<Source>
ArchetypeModel. testSources
Field testSources.Methods in org.apache.maven.archetype.model that return types with arguments of type Source Modifier and Type Method Description java.util.List<Source>
ArchetypeModel. getSources()
Method getSources.java.util.List<Source>
ArchetypeModel. getTestSources()
Method getTestSources.Methods in org.apache.maven.archetype.model with parameters of type Source Modifier and Type Method Description void
ArchetypeModel. addSource(Source source)
Method addSource.void
ArchetypeModel. addTestSource(Source source)
Method addTestSource.void
ArchetypeModel. removeSource(Source source)
Method removeSource.void
ArchetypeModel. removeTestSource(Source source)
Method removeTestSource.Method parameters in org.apache.maven.archetype.model with type arguments of type Source Modifier and Type Method Description void
ArchetypeModel. setSources(java.util.List<Source> sources)
Set files that will go intosrc/main/java
.void
ArchetypeModel. setTestSources(java.util.List<Source> testSources)
Set files that will go intosrc/test/java
. -
Uses of Source in org.apache.maven.archetype.model.io.xpp3
Methods in org.apache.maven.archetype.model.io.xpp3 that return Source Modifier and Type Method Description private Source
ArchetypeXpp3Reader. parseSource(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict)
Method parseSource.Methods in org.apache.maven.archetype.model.io.xpp3 with parameters of type Source Modifier and Type Method Description private void
ArchetypeXpp3Writer. writeSource(Source source, java.lang.String tagName, org.codehaus.plexus.util.xml.pull.XmlSerializer serializer)
Method writeSource.
-