| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| PartnerInteraction |
|
| 1.0;1 |
| 1 | package org.sbpm.bpmo; | |
| 2 | ||
| 3 | public interface PartnerInteraction extends Identifiable { | |
| 4 | ||
| 5 | public String getName(); | |
| 6 | public void setName(String name); | |
| 7 | ||
| 8 | public String getDescription(); | |
| 9 | public void setDescription(String description); | |
| 10 | ||
| 11 | } |