diff options
Diffstat (limited to 'src/com/itmill/toolkit/demo/featurebrowser/LabelExample.java')
-rw-r--r-- | src/com/itmill/toolkit/demo/featurebrowser/LabelExample.java | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/com/itmill/toolkit/demo/featurebrowser/LabelExample.java b/src/com/itmill/toolkit/demo/featurebrowser/LabelExample.java index 41e14b8841..c465b14845 100644 --- a/src/com/itmill/toolkit/demo/featurebrowser/LabelExample.java +++ b/src/com/itmill/toolkit/demo/featurebrowser/LabelExample.java @@ -1,3 +1,7 @@ +/*
+@ITMillApache2LicenseForJavaFiles@
+ */
+
package com.itmill.toolkit.demo.featurebrowser;
import com.itmill.toolkit.ui.CustomComponent;
@@ -25,11 +29,11 @@ public class LabelExample extends CustomComponent { public LabelExample() {
- OrderedLayout main = new OrderedLayout();
+ final OrderedLayout main = new OrderedLayout();
main.setMargin(true);
setCompositionRoot(main);
- GridLayout g = new GridLayout(2, 4);
+ final GridLayout g = new GridLayout(2, 4);
main.addComponent(g);
// plain w/o caption
|