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.

JavaScriptManagerState.java 463B

12345678910111213141516171819202122
  1. /*
  2. @VaadinApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.shared.extension.javascriptmanager;
  5. import java.util.HashSet;
  6. import java.util.Set;
  7. import com.vaadin.shared.communication.SharedState;
  8. public class JavaScriptManagerState extends SharedState {
  9. private Set<String> names = new HashSet<String>();
  10. public Set<String> getNames() {
  11. return names;
  12. }
  13. public void setNames(Set<String> names) {
  14. this.names = names;
  15. }
  16. }