package baf.guide;
import java.util.*;
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;

public class Year extends Item {

  public static Year forName(String name) throws IOException {
    return (Year)forPath("/years/"+name);
  }

  public Year(String path) throws IOException {
    super(path);
  }

  public String getTag() {
    return ":y";
  }

  public String getDescription() {
    return "Adventure games released in "+name;
  }
}
