/[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.34 by mark, Sat Jun 26 16:06:48 2004 UTC revision 1.35 by mark, Thu Jul 22 19:45:38 2004 UTC
# Line 856  public class Container extends Component Line 856  public class Container extends Component
856     */     */
857    public void deliverEvent(Event e)    public void deliverEvent(Event e)
858    {    {
859        if (!handleEvent (e))
860          {
861            synchronized (getTreeLock ())
862              {
863                Component parent = getParent ();
864    
865                if (parent != null)
866                  parent.deliverEvent (e);
867              }
868          }
869    }    }
870    
871    /**    /**
# Line 1027  public class Container extends Component Line 1037  public class Container extends Component
1037    {    {
1038      String param = super.paramString();      String param = super.paramString();
1039      if (layoutMgr != null)      if (layoutMgr != null)
1040        param = param + "," + layoutMgr.getClass().getName();        param = param + ",layout=" + layoutMgr.getClass().getName();
1041    
1042      return param;      return param;
1043    }    }

Legend:
Removed from v.1.34  
changed lines
  Added in v.1.35

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