aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/itmill/toolkit/ui/CustomComponent.java
diff options
context:
space:
mode:
authorJani Laakso <jani.laakso@itmill.com>2008-02-06 13:06:00 +0000
committerJani Laakso <jani.laakso@itmill.com>2008-02-06 13:06:00 +0000
commitd1cf6e4334f78b22923c2f935fa35e1062a73bdc (patch)
treed2811d035dc7bff365c54f30836cd797f384f0f9 /src/com/itmill/toolkit/ui/CustomComponent.java
parentc9ac55500aeb1a54b6153dff7c197da83ebac2e9 (diff)
downloadvaadin-framework-d1cf6e4334f78b22923c2f935fa35e1062a73bdc.tar.gz
vaadin-framework-d1cf6e4334f78b22923c2f935fa35e1062a73bdc.zip
1. Removed obsolete dependency framework methods and interface definitions.
2. "Undeprecated" reflection based listeners, we still wish to support these. But I noted on javadoc that using these methods is discouraged and suggested better methods. svn changeset:3718/svn branch:trunk
Diffstat (limited to 'src/com/itmill/toolkit/ui/CustomComponent.java')
-rw-r--r--src/com/itmill/toolkit/ui/CustomComponent.java13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/com/itmill/toolkit/ui/CustomComponent.java b/src/com/itmill/toolkit/ui/CustomComponent.java
index ef531aa12f..7c165df687 100644
--- a/src/com/itmill/toolkit/ui/CustomComponent.java
+++ b/src/com/itmill/toolkit/ui/CustomComponent.java
@@ -8,13 +8,11 @@ import java.util.Collection;
import java.util.LinkedList;
import java.util.Locale;
import java.util.Map;
-import java.util.Set;
import com.itmill.toolkit.Application;
import com.itmill.toolkit.terminal.PaintException;
import com.itmill.toolkit.terminal.PaintTarget;
import com.itmill.toolkit.terminal.Resource;
-import com.itmill.toolkit.terminal.VariableOwner;
/**
* Custom component provides simple implementation of Component interface for
@@ -424,17 +422,6 @@ public class CustomComponent implements Component {
public void changeVariables(Object source, Map variables) {
}
- /* Dependency -framework is deprecated */
- public void dependsOn(VariableOwner depended) {
- }
-
- public void removeDirectDependency(VariableOwner depended) {
- }
-
- public Set getDirectDependencies() {
- return null;
- }
-
/* Event functions are not implemented by default -------------------- */
/**