blob: 8d7c374c15f1612d5ce557ff045c8de3c99c2aa0 [file] [log] [blame]
/*******************************************************************************
* 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