MCPcopy Create free account
hub / github.com/annmuor/jnode / NewFileareaEvent

Class NewFileareaEvent

jnode-core/src/jnode/event/NewFileareaEvent.java:25–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23import jnode.dto.Link;
24
25public 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected