Declaring a class in Java
public class Coordinate {
keywords public and class
name of the class -- naming convention: capitalize all words in class names, e.g. StringBuffer
body of the class (within { and })
- field declarations (normal type and class declarations)
- methods and constructors (later in the course)