You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IntroDataModel.java 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /* *************************************************************************
  2. IT Mill Toolkit
  3. Development of Browser User Interfaces Made Easy
  4. Copyright (C) 2000-2006 IT Mill Ltd
  5. *************************************************************************
  6. This product is distributed under commercial license that can be found
  7. from the product package on license.pdf. Use of this product might
  8. require purchasing a commercial license from IT Mill Ltd. For guidelines
  9. on usage, see licensing-guidelines.html
  10. *************************************************************************
  11. For more information, contact:
  12. IT Mill Ltd phone: +358 2 4802 7180
  13. Ruukinkatu 2-4 fax: +358 2 4802 7181
  14. 20540, Turku email: info@itmill.com
  15. Finland company www: www.itmill.com
  16. Primary source for information and releases: www.itmill.com
  17. ********************************************************************** */
  18. package com.itmill.toolkit.demo.features;
  19. import com.itmill.toolkit.ui.Component;
  20. import com.itmill.toolkit.ui.Label;
  21. import com.itmill.toolkit.ui.OrderedLayout;
  22. public class IntroDataModel extends Feature {
  23. public IntroDataModel() {
  24. super();
  25. }
  26. protected Component getDemoComponent() {
  27. OrderedLayout l = new OrderedLayout();
  28. Label lab = new Label();
  29. lab.setStyle("featurebrowser-none");
  30. l.addComponent(lab);
  31. // Properties
  32. propertyPanel = null;
  33. return l;
  34. }
  35. protected String getExampleSrc() {
  36. return "";
  37. }
  38. /**
  39. * @see com.itmill.toolkit.demo.features.Feature#getDescriptionXHTML()
  40. */
  41. protected String getDescriptionXHTML() {
  42. return "";
  43. }
  44. protected String getImage() {
  45. return "";
  46. }
  47. protected String getTitle() {
  48. return "Introduction for data model";
  49. }
  50. }