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.

ActionOwner.java 350B

12345678910111213141516171819
  1. /*
  2. @ITMillApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.terminal.gwt.client.ui;
  5. import com.vaadin.terminal.gwt.client.ApplicationConnection;
  6. public interface ActionOwner {
  7. /**
  8. * @return Array of IActions
  9. */
  10. public Action[] getActions();
  11. public ApplicationConnection getClient();
  12. public String getPaintableId();
  13. }