All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.xtext.resource.DescriptionUtils Maven / Gradle / Ivy

There is a newer version: 2.4.3
Show newest version
/*******************************************************************************
 * Copyright (c) 2010 itemis AG (http://www.itemis.eu) and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *******************************************************************************/
package org.eclipse.xtext.resource;

import java.util.Collections;
import java.util.Set;

import org.eclipse.emf.common.util.URI;

import com.google.common.collect.Sets;

/**
 * @author Sebastian Zarnekow - Initial contribution and API
 */
public class DescriptionUtils {

	/**
	 * Collect the URIs of resources, that are referenced by the given description.
	 * @return the list of referenced URIs. Never null.
	 */
	public Set collectOutgoingReferences(IResourceDescription description) {
		URI resourceURI = description.getURI();
		Set result = null;
		for(IReferenceDescription reference: description.getReferenceDescriptions()) {
			URI targetResource = reference.getTargetEObjectUri().trimFragment();
			if (!resourceURI.equals(targetResource)) {
				if (result == null)
					result = Sets.newHashSet(targetResource);
				else
					result.add(targetResource);
			}
		}
		if (result != null)
			return result;
		return Collections.emptySet();
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy