Skip to content
Snippets Groups Projects
Commit 4cabe7e5 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

common getElement method added

parent e3f520f1
No related branches found
No related tags found
1 merge request!171Resolve "data overlay should support element id"
......@@ -444,6 +444,12 @@ public class RestAnnotationParserTest extends CellDesignerTestFunctions {
// TODO Auto-generated method stub
}
@Override
public String getElementId() {
// TODO Auto-generated method stub
return null;
}
});
fail("Exception expected");
} catch (NotImplementedException e) {
......
......@@ -160,5 +160,7 @@ public interface BioEntity extends Serializable {
*
* @return semantic zoom level visibility
*/
String getVisibilityLevel();
String getVisibilityLevel();
String getElementId();
}
......@@ -879,4 +879,9 @@ public class Reaction implements BioEntity {
}
@Override
public String getElementId() {
return getIdReaction();
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment