Skip to main content
summaryrefslogtreecommitdiffstats
blob: 600158abe93f9afa69d2d702f1a0dd2a70af2e2b (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*******************************************************************************
 * Copyright (c) 2001, 2005 IBM Corporation 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:
 * IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jst.j2ee.internal.common;

import org.eclipse.emf.common.util.URI;
import org.eclipse.jst.j2ee.internal.J2EEVersionConstants;
import org.eclipse.wst.common.internal.emf.resource.CompatibilityXMIResourceImpl;


/**
 * @deprecated No longer required - change to extend CompatibilityXMIResourceImpl
 */
public class J2EEXMIResource extends CompatibilityXMIResourceImpl implements J2EEVersionResource{

	/**
	 * Constructor for J2EEXMIResource.
	 */
	public J2EEXMIResource() {
		super();
	}

	/**
	 * Constructor for J2EEXMIResource.
	 * @param uri
	 */
	public J2EEXMIResource(URI uri) {
		super(uri);
	}
	/* (non-Javadoc)
	 * @see org.eclipse.jst.j2ee.internal.common.J2EEVersionResource#getJ2EEVersionID()
	 */
	public int getJ2EEVersionID() {
		// TODO Auto-generated method stub
		return J2EEVersionConstants.J2EE_1_3_ID;
	}
	/* (non-Javadoc)
	 * @see org.eclipse.jst.j2ee.internal.common.J2EEVersionResource#getModuleVersionID()
	 */
	public int getModuleVersionID() {
		// TODO Auto-generated method stub
		return 0;
	}
	/* (non-Javadoc)
	 * @see org.eclipse.jst.j2ee.internal.common.J2EEVersionResource#getVersionID()
	 */
	public int getVersionID() {
		// TODO Auto-generated method stub
		return 0;
	}
}

Back to the top