Skip to main content
summaryrefslogtreecommitdiffstats
blob: f796460a9a831317845213482d8b2b93c2054453 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) 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
 *
 * Contributors:
 *    Eike Stepper - initial API and implementation
 */
package org.eclipse.emf.cdo.team;

import org.eclipse.net4j.util.container.IContainer;

import org.eclipse.core.resources.IProject;

/**
 * Manages {@link org.eclipse.core.resources.IProject projects} that are mapped
 * to CDO repositories by the CDO {@link org.eclipse.team.core.RepositoryProvider team provider}.
 *
 * @author Eike Stepper
 * @apiviz.uses {@link IRepositoryProject} - - manages
 */
public interface IRepositoryManager extends IContainer<IRepositoryProject>
{
  public static final IRepositoryManager INSTANCE = org.eclipse.emf.cdo.internal.team.RepositoryManager.INSTANCE;

  public IRepositoryProject getElement(IProject project);
}

Back to the top