Examples of HermesRepository


Examples of hermes.HermesRepository

                    {
                        String fileName = (String) iter.next();

                        if (!fileNames.contains(fileName))
                        {
                            HermesRepository repository = (HermesRepository) repositoriesByName.get(fileName);

                            iter.remove();
                            repositories.remove(repository);

                            for (Iterator iter2 = listeners.iterator(); iter2.hasNext();)
                            {
                                HermesRepositoryListener l = (HermesRepositoryListener) iter2.next();

                                cat.debug("removed repository: " + repository.getId());

                                l.onRepositoryRemoved(repository);
                            }
                        }
                    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.