KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > emf > mapping > provider > MappingItemProviderAdapter


1 /**
2  * <copyright>
3  *
4  * Copyright (c) 2002-2004 IBM Corporation and others.
5  * All rights reserved. This program and the accompanying materials
6  * are made available under the terms of the Eclipse Public License v1.0
7  * which accompanies this distribution, and is available at
8  * http://www.eclipse.org/legal/epl-v10.html
9  *
10  * Contributors:
11  * IBM - Initial API and implementation
12  *
13  * </copyright>
14  *
15  * $Id: MappingItemProviderAdapter.java,v 1.4 2005/06/08 06:21:43 nickb Exp $
16  */

17 package org.eclipse.emf.mapping.provider;
18
19
20 import org.eclipse.emf.common.notify.AdapterFactory;
21 import org.eclipse.emf.edit.provider.ItemProviderAdapter;
22
23
24 /**
25  * This is the base class for all our providers, in case we need to add common function across all our providers.
26  */

27 public class MappingItemProviderAdapter extends ItemProviderAdapter
28 {
29   /**
30    * This creates and instance from an adapter factory and a domain notifier.
31    */

32   protected MappingItemProviderAdapter(AdapterFactory adapterFactory)
33   {
34     super(adapterFactory);
35   }
36 }
37
Popular Tags