You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by sv...@apache.org on 2015/10/16 14:33:47 UTC

[4/8] wicket git commit: WICKET-6004 Wicket 8 cleanup - IChangeListener with argument

WICKET-6004 Wicket 8 cleanup - IChangeListener with argument


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/0b5fce36
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/0b5fce36
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/0b5fce36

Branch: refs/heads/master
Commit: 0b5fce366e6ac41d7ad46f5b31acca8467fbe872
Parents: 467a4a8
Author: Sven Meier <sv...@apache.org>
Authored: Tue Oct 13 11:41:31 2015 +0200
Committer: Sven Meier <sv...@apache.org>
Committed: Fri Oct 16 14:24:45 2015 +0200

----------------------------------------------------------------------
 .../wicket/util/listener/IChangeListener2.java  | 34 --------------------
 1 file changed, 34 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/0b5fce36/wicket-util/src/main/java/org/apache/wicket/util/listener/IChangeListener2.java
----------------------------------------------------------------------
diff --git a/wicket-util/src/main/java/org/apache/wicket/util/listener/IChangeListener2.java b/wicket-util/src/main/java/org/apache/wicket/util/listener/IChangeListener2.java
deleted file mode 100644
index d6ffa35..0000000
--- a/wicket-util/src/main/java/org/apache/wicket/util/listener/IChangeListener2.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.wicket.util.listener;
-
-import org.apache.wicket.util.watch.IModifiable;
-
-/**
- * Generic "something changed" listener interface that also provides the
- * changed object as an argument.
- */
-// TODO Wicket 8: Rename to IChangeListener and remove the old one
-public interface IChangeListener2<T extends IModifiable> extends IChangeListener
-{
-	/**
-	 * Client method that is called to indicate that something changed.
-	 *
-	 * @param modifiable The object that has changed
-	 */
-	void onChange(T modifiable);
-}