// From A Beginning Programmer's Guide to Java
// at http://beginwithjava.blogspot.com/

// Used in the article 'Constructor Methods'
// at http://beginwithjava.blogspot.com/2008/07/constructor-methods.html

// This is a simple class with nothing but a constructor.
// The class extends Java's Object class (the default.)
// It calls Object's constructor using super();
// For more information, see the original article, and the
// follow-up article 'Multiple Constructor Methods' at:
// http://beginwithjava.blogspot.com/2010/08/multiple-constructor-methods.html

// by Mark Graybill, July 2008

public class Dragon{

  public Dragon(){
    super();
  }
}