blob: 2f27107645ce13fb3e3905a83180e47090534d52 [file] [log] [blame]
package org.eclipse.jst.j2ee.internal;
/**
* Used to introduce EMF model concepts on both Java EE model implementations - separated from clean Module interface
*
*/
public interface ICommonEMFModule {
/**
* Sets the string fragment used to identify this object - most be unique within the document
*/
public void setId(String frag);
/**
* Gets the id used to identify this object
*/
public String getId();
}