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.

SubPartAware.java 270B

1234567891011121314
  1. /*
  2. @ITMillApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.terminal.gwt.client.ui;
  5. import com.google.gwt.user.client.Element;
  6. public interface SubPartAware {
  7. Element getSubPartElement(String subPart);
  8. String getSubPartName(Element subElement);
  9. }