This extension point associates a model provider with a content provider. Repository providers will use this information to enable appropriate content providers when performing team operations. Associates a model provder with a content extension. The id of the org.eclipse.core.resoures.modelProvider extension which is associated with the content extension. The id of org.eclipse.ui.navigator.navigatorContent extension that is associated with this model provider. An icon that will be used when showing this model in lists and menus. A preference page that can be displayed by views that host the content extension 3.2 Here is an example teamContentProvider extension <pre> <extension id="jdtContentProvider" point="org.eclipse.team.ui.teamContentProviders"> <teamContentProvider contentExtensionId="org.eclipse.jdt.ui.resourceContent" modelProviderId="org.eclipse.jdt.ui.modelProvider"/> </extension> </pre> The modelProviderId must correspond to a model provider registered with the org.eclipse.core.resources.modelProviders extension point. Similarly, the contentExtensionId must correspond to a navigator content extension registered with the org.eclipse.ui.navigator.navigatorContent extension point. There is no implementation directly associated with this extension point. Copyright (c) 2005 IBM Corporation and others.<br> 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 <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>