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.

NoLayoutRpc.java 234B

1234567891011
  1. package com.vaadin.tests.widgetset.client;
  2. import com.vaadin.shared.annotations.NoLayout;
  3. import com.vaadin.shared.communication.ClientRpc;
  4. public interface NoLayoutRpc extends ClientRpc {
  5. @NoLayout
  6. public void doRpc();
  7. }