Specifications

Sun Services
Java™ Programming Language
Module 13, slide 35 of 37
Copyright 2005 Sun Microsystems, Inc. All Rights Reserved. Sun Services, Revision F
The push Method
22 public synchronized void push(char c) {
23 this.notify();
24 buffer.add(c);
25 }