return artifactExists || contentExists;
}
private boolean readComposite(URI repoUri, String name, P2Descriptor p2Descriptor)
throws IOException, ParseException, SAXException {
P2CompositeParser p2CompositeParser = new P2CompositeParser();
boolean exist = readJarOrXml(repoUri, name, p2CompositeParser);
if (exist) {
Iterator itChildLocation = p2CompositeParser.getChildLocations().iterator();
while (itChildLocation.hasNext()) {
String childLocation = (String) itChildLocation.next();
if (!childLocation.endsWith("/")) {
childLocation += "/";
}