01: package com.metaboss.sdlctools.models.metabossmodel.visualmodel;
02:
03: /**
04: * EntityStateDiagram object instance interface.
05: */
06: public interface EntityStateDiagram extends
07: com.metaboss.sdlctools.models.metabossmodel.visualmodel.Diagram {
08: /**
09: * Returns the value of reference entity.
10: * @return Value of reference entity.
11: */
12: public com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.Entity getEntity();
13:
14: /**
15: * Sets the value of reference entity. See {@link #getEntity} for description
16: * on the reference.
17: * @param newValue New value to be set.
18: */
19: public void setEntity(
20: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.systemimplementationmodel.Entity newValue);
21: }
|