/******************************************************************************* * Copyright (c) 2008, Original authors. * 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 * * Contributors: * Angelo ZERR *******************************************************************************/ package org.akrogen.core.resources; /** * Resources locator manage to register/unregister {@link IResourceLocator}. * * @version 1.0.0 * @author Angelo ZERR * */ public interface IResourcesLocatorManager extends IResourceLocator { /** * Register resourceLocator. * * @param resourceLocator */ public void registerResourceLocator(IResourceLocator resourceLocator); /** * Unregister resourceLocator. * * @param resourceLocator */ public void unregisterResourceLocator(IResourceLocator resourceLocator); }