/[classpath]/classpath/java/awt/Container.java
ViewVC logotype

Diff of /classpath/java/awt/Container.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3 by jewel, Sat Aug 11 16:12:26 2001 UTC revision 1.4 by jewel, Mon Nov 5 21:20:44 2001 UTC
# Line 50  public abstract class Container extends Line 50  public abstract class Container extends
50  private Vector components = new Vector();  private Vector components = new Vector();
51    
52  // Determines whether or not the peer has been created for this container  // Determines whether or not the peer has been created for this container
53  private boolean is_notified;  boolean is_notified;
54    
55  // The list of container listeners for this object  // The list of container listeners for this object
56  private ContainerListener container_listeners;  private ContainerListener container_listeners;
# Line 200  addImpl(Component component, Object cons Line 200  addImpl(Component component, Object cons
200    
201    // Create peer if necessary    // Create peer if necessary
202    if (is_notified)    if (is_notified)
203      component.addNotify();        {
204              System.out.println("Calling addNotify on " + component);
205              component.addNotify();
206          }
207    
208    // Add to layout manager if it exists.    // Add to layout manager if it exists.
209    if (layout_manager != null)    if (layout_manager != null)

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26