MCPcopy Create free account
hub / github.com/atas76/openengine / Club

Class Club

src/main/java/org/openengine/prototype/domain/Club.java:3–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package org.openengine.prototype.domain;
2
3public class Club implements Team {
4
5 private String name;
6 private String nation;
7 private Squad squad = new Squad();
8
9 public Club(String name, String nation) {
10 this.name = name;
11 this.nation = nation;
12 }
13
14 public String getName() {
15 return name;
16 }
17
18 public String getNation() {
19 return this.nation;
20 }
21
22 public Squad getSquad() {
23 return this.squad;
24 }
25}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected