您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

AbstractMediaState.java 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * Copyright 2000-2014 Vaadin Ltd.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  5. * use this file except in compliance with the License. You may obtain a copy of
  6. * the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  12. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  13. * License for the specific language governing permissions and limitations under
  14. * the License.
  15. */
  16. package com.vaadin.shared.ui;
  17. import java.util.ArrayList;
  18. import java.util.List;
  19. import com.vaadin.shared.AbstractComponentState;
  20. import com.vaadin.shared.annotations.NoLayout;
  21. import com.vaadin.shared.communication.URLReference;
  22. public class AbstractMediaState extends AbstractComponentState {
  23. public boolean showControls;
  24. @NoLayout
  25. public String altText;
  26. public boolean htmlContentAllowed;
  27. @NoLayout
  28. public boolean autoplay;
  29. @NoLayout
  30. public boolean muted;
  31. public List<URLReference> sources = new ArrayList<URLReference>();
  32. public List<String> sourceTypes = new ArrayList<String>();
  33. }