Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ca7dddccebf920d8f997ee9cc35fb190bb2cfc82 (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
30
31
32
33
34
35
36
/*******************************************************************************
 *  Copyright (c) 2006, 2007 Oracle. 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: Oracle. - initial API and implementation
 *******************************************************************************/
package org.eclipse.jpt.ui.internal.xml.structure;

import org.eclipse.emf.edit.ui.provider.AdapterFactoryContentProvider;
import org.eclipse.emf.edit.ui.provider.AdapterFactoryLabelProvider;
import org.eclipse.jface.viewers.ILabelProvider;
import org.eclipse.jface.viewers.ITreeContentProvider;
import org.eclipse.jpt.core.internal.JptCorePlugin;
import org.eclipse.jpt.ui.internal.structure.IJpaStructureProvider;

public class XmlStructureProvider implements IJpaStructureProvider {

	public String fileContentType() {
		return JptCorePlugin.ORM_XML_CONTENT_TYPE;
	}
	
	public ITreeContentProvider buildContentProvider() {
		return new AdapterFactoryContentProvider(new JpaCoreXmlItemProviderAdapterFactory());
	}
	
	public ILabelProvider buildLabelProvider() {
		return new AdapterFactoryLabelProvider(new JpaCoreXmlItemProviderAdapterFactory());
	}
	
	public void dispose() {
		// TODO Auto-generated method stub
		
	}
}

Back to the top