| 23 | import jnode.dto.Link; |
| 24 | |
| 25 | public class NewFileareaEvent implements IEvent { |
| 26 | private final String text; |
| 27 | |
| 28 | public NewFileareaEvent(String name, Link link) { |
| 29 | text = "Filearea " + name + " created by " |
| 30 | + ((link == null) ? "local system" : link.getLinkAddress()) |
| 31 | + "\n"; |
| 32 | } |
| 33 | |
| 34 | @Override |
| 35 | public String getEvent() { |
| 36 | return text; |
| 37 | } |
| 38 | |
| 39 | } |
nothing calls this directly
no outgoing calls
no test coverage detected