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.

ClientRpcClassWidget.java 348B

123456789101112131415161718
  1. package com.vaadin.tests.widgetset.client;
  2. import com.vaadin.shared.ui.MediaControl;
  3. import com.vaadin.v7.client.ui.VLabel;
  4. public class ClientRpcClassWidget extends VLabel implements MediaControl {
  5. @Override
  6. public void play() {
  7. setText("play");
  8. }
  9. @Override
  10. public void pause() {
  11. setText("pause");
  12. }
  13. }