Class ASCIIArtiste

java.lang.Object
  extended by ASCIIArtiste

public class ASCIIArtiste
extends java.lang.Object


Constructor Summary
ASCIIArtiste()
          Create a new ASCIIArtiste object.
 
Method Summary
static void main(java.lang.String[] args)
          Test driver for ASCIIArtiste class, calling private methods.
 void printClub(int height)
          Theoretically, print out a club using rows of stars and whitespace; right now just prints out a simple box.
 void printDiamond(int height)
          Print out a diamond using rows of stars and whitespace.
 void printHeart(int height)
          Print out a heart using rows of stars and whitespace.
 void printSpade(int height)
          Print out a spade using rows of stars and whitespace.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ASCIIArtiste

public ASCIIArtiste()
Create a new ASCIIArtiste object.

Method Detail

printDiamond

public void printDiamond(int height)
Print out a diamond using rows of stars and whitespace.

Parameters:
height - number of rows to use

printHeart

public void printHeart(int height)
Print out a heart using rows of stars and whitespace.

Parameters:
height - number of rows to use

printSpade

public void printSpade(int height)
Print out a spade using rows of stars and whitespace.

Parameters:
height - number of rows to use

printClub

public void printClub(int height)
Theoretically, print out a club using rows of stars and whitespace; right now just prints out a simple box.

Parameters:
height - number of rows to use

main

public static void main(java.lang.String[] args)
Test driver for ASCIIArtiste class, calling private methods. Use it (and enhance it!) to help you debug your ASCIIArtiste class.