ContentNounSimple.ts 288 B

123456789101112
  1. ///<reference path="../../../Elements/Classes/Say.ts"/>
  2. class ContentNounSimple implements Printable {
  3. private name : string;
  4. public constructor (name : string) {
  5. this.name = name;
  6. }
  7. public getPrintedName(): string {
  8. return " " + this.name + " ";
  9. }
  10. }