Skip to content
Snippets Groups Projects
Commit e0c589d0 authored by ousseyn01's avatar ousseyn01
Browse files

Create interface for manage the logic of specific elements

parent 6fd1e3d1
Branches
Tags
No related merge requests found
package model.elements;
import model.ModelElement;
import util.Position;
public interface ElementHandler {
void addElement(Position position);
void removeElement(Position position);
boolean hasElement(Position position);
ModelElement getModelElement();
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment