Skip to main content
summaryrefslogtreecommitdiffstats
blob: 8d7c374c15f1612d5ce557ff045c8de3c99c2aa0 (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
/*******************************************************************************
 * 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.jem.java;
/*


 */

import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EPackage;

public interface JavaPackage extends EPackage{
	
	public static final String PACKAGE_ID = "*package";	// The id (the part that goes after the '#' for a java package.) //$NON-NLS-1$
														// There will only be one package per java resource so it
														// can be unique. No java types, methods, fields ids can
														// start with an asterick so will be unique.
														
	public static final String PRIMITIVE_PACKAGE_NAME = "_-javaprim"; //$NON-NLS-1$
	/**
	 * @generated This field/method will be replaced during code generation 
	 * @return The list of JavaClasses references
	 */
	EList getJavaClasses();

	public String getPackageName() ;

} //JavaPackage





Back to the top