aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/itmill/toolkit/ui/CustomComponent.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/itmill/toolkit/ui/CustomComponent.java')
-rw-r--r--src/com/itmill/toolkit/ui/CustomComponent.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/com/itmill/toolkit/ui/CustomComponent.java b/src/com/itmill/toolkit/ui/CustomComponent.java
index dd4b1577c2..b0bc392f26 100644
--- a/src/com/itmill/toolkit/ui/CustomComponent.java
+++ b/src/com/itmill/toolkit/ui/CustomComponent.java
@@ -102,6 +102,7 @@ public class CustomComponent extends AbstractComponentContainer {
/* Basic component features ------------------------------------------ */
+ @Override
public void paintContent(PaintTarget target) throws PaintException {
if (root == null) {
throw new IllegalStateException("Composition root must be set to"
@@ -140,6 +141,7 @@ public class CustomComponent extends AbstractComponentContainer {
this.componentType = componentType;
}
+ @Override
public String getTag() {
return "customcomponent";
}
@@ -180,6 +182,7 @@ public class CustomComponent extends AbstractComponentContainer {
*
* @see com.itmill.toolkit.ui.AbstractComponentContainer#addComponent(com.itmill.toolkit.ui.Component)
*/
+ @Override
public void addComponent(Component c) {
throw new UnsupportedOperationException();
}
@@ -189,6 +192,7 @@ public class CustomComponent extends AbstractComponentContainer {
*
* @see com.itmill.toolkit.ui.AbstractComponentContainer#moveComponentsFrom(com.itmill.toolkit.ui.ComponentContainer)
*/
+ @Override
public void moveComponentsFrom(ComponentContainer source) {
throw new UnsupportedOperationException();
}
@@ -198,6 +202,7 @@ public class CustomComponent extends AbstractComponentContainer {
*
* @see com.itmill.toolkit.ui.AbstractComponentContainer#removeAllComponents()
*/
+ @Override
public void removeAllComponents() {
throw new UnsupportedOperationException();
}
@@ -207,6 +212,7 @@ public class CustomComponent extends AbstractComponentContainer {
*
* @see com.itmill.toolkit.ui.AbstractComponentContainer#removeComponent(com.itmill.toolkit.ui.Component)
*/
+ @Override
public void removeComponent(Component c) {
throw new UnsupportedOperationException();
}