package org.plenix.translator;

public class Language {
  protected String code;
  protected String name;

  public Language(String theCode, String theName) {
    this.code = theCode;
    this.name = theName;
  }

  public String getCode() {
    return this.code;
  }

  public String getName() {
    return this.name;
  }
}