]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.utils.ui/src/org/simantics/utils/ui/internal/awt/RecursiveContainerListener.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.utils.ui / src / org / simantics / utils / ui / internal / awt / RecursiveContainerListener.java
index 4e561f7cd7d2c9fed38889b161d261e95d98dc11..b799f0257b96f94a421488228032d09dabf30eca 100644 (file)
-/*******************************************************************************\r
- * Copyright (c) 2007 SAS Institute.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     SAS Institute - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.utils.ui.internal.awt;\r
-\r
-import java.awt.Component;\r
-import java.awt.Container;\r
-import java.awt.EventQueue;\r
-import java.awt.event.ContainerEvent;\r
-import java.awt.event.ContainerListener;\r
-\r
-class RecursiveContainerListener implements ContainerListener {\r
-    private final ContainerListener listener;\r
-    \r
-    RecursiveContainerListener(ContainerListener listener) {\r
-        assert listener != null;\r
-        \r
-        this.listener = listener;\r
-    }\r
-\r
-    private void handleAdd(Container source, Component c) {\r
-        assert source != null;\r
-        assert c != null;\r
-        assert listener != null;\r
-        assert EventQueue.isDispatchThread();    // On AWT event thread\r
-        \r
-        // System.out.println("Listening to: " + c);\r
-        listener.componentAdded(new ContainerEvent(source, ContainerEvent.COMPONENT_ADDED, c));\r
-        if (c instanceof Container) {\r
-            ((Container)c).addContainerListener(this);\r
-        }\r
-    }\r
-    \r
-    private void handleRemove(Container source, Component c) {\r
-        assert source != null;\r
-        assert c != null;\r
-        assert listener != null;\r
-        assert EventQueue.isDispatchThread();    // On AWT event thread\r
-\r
-        // System.out.println("Stopped Listening to: " + c);\r
-        listener.componentRemoved(new ContainerEvent(source, ContainerEvent.COMPONENT_REMOVED, c));\r
-        if (c instanceof Container) {\r
-            ((Container)c).removeContainerListener(this);\r
-        }\r
-    }\r
-    \r
-    private void handleAllAdds(Container source, Component child) {\r
-        assert source != null;\r
-        assert child != null;\r
-        assert EventQueue.isDispatchThread();    // On AWT event thread\r
-\r
-        if (child instanceof Container) {\r
-            Container container = (Container)child;\r
-            Component[] children = container.getComponents();\r
-            for (int i = 0; i < children.length; i++) {\r
-                handleAllAdds(container, children[i]);\r
-            }\r
-        }\r
-        handleAdd(source, child);\r
-    }\r
-    \r
-    private void handleAllRemoves(Container source, Component child) {\r
-        assert source != null;\r
-        assert child != null;\r
-        assert EventQueue.isDispatchThread();    // On AWT event thread\r
-\r
-        if (child instanceof Container) {\r
-            Container container = (Container)child;\r
-            Component[] children = container.getComponents();\r
-            for (int i = 0; i < children.length; i++) {\r
-                handleAllRemoves(container, children[i]);\r
-            }\r
-        }\r
-        handleRemove(source, child);\r
-\r
-    }\r
-\r
-    public void componentAdded(ContainerEvent e) {\r
-        assert e != null;\r
-        assert EventQueue.isDispatchThread();    // On AWT event thread\r
-        \r
-        Container source = (Container)e.getSource();\r
-        handleAllAdds(source, e.getChild());\r
-    }\r
-    \r
-    public void componentRemoved(ContainerEvent e) {\r
-        assert e != null;\r
-        assert EventQueue.isDispatchThread();    // On AWT event thread\r
-        \r
-        Container source = (Container)e.getSource();\r
-        handleAllRemoves(source, e.getChild());\r
-    }\r
-}\r
-\r
+/*******************************************************************************
+ * Copyright (c) 2007 SAS Institute.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     SAS Institute - initial API and implementation
+ *******************************************************************************/
+package org.simantics.utils.ui.internal.awt;
+
+import java.awt.Component;
+import java.awt.Container;
+import java.awt.EventQueue;
+import java.awt.event.ContainerEvent;
+import java.awt.event.ContainerListener;
+
+class RecursiveContainerListener implements ContainerListener {
+    private final ContainerListener listener;
+    
+    RecursiveContainerListener(ContainerListener listener) {
+        assert listener != null;
+        
+        this.listener = listener;
+    }
+
+    private void handleAdd(Container source, Component c) {
+        assert source != null;
+        assert c != null;
+        assert listener != null;
+        assert EventQueue.isDispatchThread();    // On AWT event thread
+        
+        // System.out.println("Listening to: " + c);
+        listener.componentAdded(new ContainerEvent(source, ContainerEvent.COMPONENT_ADDED, c));
+        if (c instanceof Container) {
+            ((Container)c).addContainerListener(this);
+        }
+    }
+    
+    private void handleRemove(Container source, Component c) {
+        assert source != null;
+        assert c != null;
+        assert listener != null;
+        assert EventQueue.isDispatchThread();    // On AWT event thread
+
+        // System.out.println("Stopped Listening to: " + c);
+        listener.componentRemoved(new ContainerEvent(source, ContainerEvent.COMPONENT_REMOVED, c));
+        if (c instanceof Container) {
+            ((Container)c).removeContainerListener(this);
+        }
+    }
+    
+    private void handleAllAdds(Container source, Component child) {
+        assert source != null;
+        assert child != null;
+        assert EventQueue.isDispatchThread();    // On AWT event thread
+
+        if (child instanceof Container) {
+            Container container = (Container)child;
+            Component[] children = container.getComponents();
+            for (int i = 0; i < children.length; i++) {
+                handleAllAdds(container, children[i]);
+            }
+        }
+        handleAdd(source, child);
+    }
+    
+    private void handleAllRemoves(Container source, Component child) {
+        assert source != null;
+        assert child != null;
+        assert EventQueue.isDispatchThread();    // On AWT event thread
+
+        if (child instanceof Container) {
+            Container container = (Container)child;
+            Component[] children = container.getComponents();
+            for (int i = 0; i < children.length; i++) {
+                handleAllRemoves(container, children[i]);
+            }
+        }
+        handleRemove(source, child);
+
+    }
+
+    public void componentAdded(ContainerEvent e) {
+        assert e != null;
+        assert EventQueue.isDispatchThread();    // On AWT event thread
+        
+        Container source = (Container)e.getSource();
+        handleAllAdds(source, e.getChild());
+    }
+    
+    public void componentRemoved(ContainerEvent e) {
+        assert e != null;
+        assert EventQueue.isDispatchThread();    // On AWT event thread
+        
+        Container source = (Container)e.getSource();
+        handleAllRemoves(source, e.getChild());
+    }
+}
+