Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/nonpublic/TreeSelectionListenerCollection.java

Diff revisions: vs.
  @@ -1,16 +1,13 @@
1 1 // This Source Code is in the Public Domain per: http://unlicense.org
2 2 package org.litesoft.GWT.client.widgets.nonpublic;
3 3
4 - import java.util.*;
5 -
6 4 import org.litesoft.GWT.client.*;
7 5
8 - public class TreeSelectionListenerCollection extends ArrayList<TreeSelectionListener>
9 - {
10 - public void notify( Object pSelected )
11 - {
12 - for ( TreeSelectionListener listener : this )
13 - {
6 + import java.util.*;
7 +
8 + public class TreeSelectionListenerCollection extends ArrayList<TreeSelectionListener> {
9 + public void notify( Object pSelected ) {
10 + for ( TreeSelectionListener listener : this ) {
14 11 listener.selected( pSelected );
15 12 }
16 13 }