Subversion Repository Public Repository

litesoft

Diff Revisions 282 vs 475 for /trunk/Java/GWT/Client/src/com/google/gwt/gen2/table/event/client/HasRowInsertionHandlers.java

Diff revisions: vs.
  @@ -12,19 +12,21 @@
12 12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 13 * License for the specific language governing permissions and limitations under
14 14 * the License.
15 - */package com.google.gwt.gen2.table.event.client;
15 + */
16 + package com.google.gwt.gen2.table.event.client;
16 17
17 - import com.google.gwt.gen2.event.shared.HandlerRegistration;
18 + import com.google.gwt.gen2.event.shared.*;
18 19
19 20 /**
20 21 * A widget that implements this interface is a public source of
21 22 * {@link RowInsertionEvent RowInsertionEvents}.
22 23 */
23 - public interface HasRowInsertionHandlers {
24 - /**
25 - * Adds a {@link RowInsertionHandler}.
26 - *
27 - * @param handler the handler
28 - */
29 - HandlerRegistration addRowInsertionHandler(RowInsertionHandler handler);
24 + public interface HasRowInsertionHandlers
25 + {
26 + /**
27 + * Adds a {@link RowInsertionHandler}.
28 + *
29 + * @param handler the handler
30 + */
31 + HandlerRegistration addRowInsertionHandler( RowInsertionHandler handler );
30 32 }