Skip to content
Snippets Groups Projects
NlocEntity.java 200 B
Newer Older
package nloc;

public class NlocEntity {
  private static int nofEntities = 0;
  private int ID;

  public NlocEntity() {
    this.ID = nofEntities++;
  }

  public int getID() {
    return ID;
  }
}