FileDocCategorySizeDatePackage
GuitarManufacturerList.javaAPI DocExample412Mon May 24 15:27:26 BST 2004com.oreilly.tiger.ch07

GuitarManufacturerList

public class GuitarManufacturerList extends LinkedList

Fields Summary
Constructors Summary
public GuitarManufacturerList()

    super();
  
Methods Summary
public booleanadd(java.lang.String manufacturer)

    if (manufacturer.indexOf("Guitars") == -1) {
      return false;
    } else {
      super.add(manufacturer);
      return true;
    }