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.

VAcceptCriteria.java 464B

12345678910111213141516171819202122
  1. /*
  2. @ITMillApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.terminal.gwt.client.ui.dd;
  5. import com.google.gwt.core.client.GWT;
  6. /**
  7. * A class via all AcceptCriteria instances are fetched by an identifier.
  8. */
  9. public class VAcceptCriteria {
  10. private static VAcceptCriterionFactory impl;
  11. static {
  12. impl = GWT.create(VAcceptCriterionFactory.class);
  13. }
  14. public static VAcceptCriterion get(String name) {
  15. return impl.get(name);
  16. }
  17. }