MCPcopy Create free account
hub / github.com/careercup/ctci / Director

Class Director

java/Chapter 8/Question8_2/Director.java:3–7  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package Question8_2;
2
3class Director extends Employee {
4 public Director() {
5 rank = Rank.Director;
6 }
7}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected