Package hu.sztaki.ilab.longneck.process

Examples of hu.sztaki.ilab.longneck.process.SplitId


public class RepositoryUtils {

    public static Set<PathToDirPair> getPackageNames(List<RefToDirPair> references, String repositorypath) throws IOException {
        Set<PathToDirPair> retval = new HashSet<PathToDirPair>();
        for (RefToDirPair reftodir : references) {
            retval.add(new PathToDirPair((new SplitId(reftodir.getRef().getId())).pkg,
                    reftodir.getDefaultdirectory(),FileType.forReference(reftodir.getRef()))
                    .normalizePath(repositorypath));
        }
        return retval;
    }
View Full Code Here

TOP

Related Classes of hu.sztaki.ilab.longneck.process.SplitId

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.