1 package org.neo.swarm;
2
3 public class FredImpl implements Fred {
4 private String text;
5
6 public FredImpl(String text) {
7 this.text = text;
8 }
9
10 public void doFred() {
11 }
12
13 public String returnSomething() {
14 return text;
15 }
16 }