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.

TypeData.java 453B

1234567891011121314151617181920
  1. /*
  2. @VaadinApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.terminal.gwt.client.metadata;
  5. public class TypeData {
  6. public static Type getType(Class<?> type) {
  7. return TypeDataStore.getType(type);
  8. }
  9. public static Type getType(String identifier) {
  10. return TypeDataStore.getType(getClass(identifier));
  11. }
  12. public static Class<?> getClass(String identifier) {
  13. return TypeDataStore.getClass(identifier);
  14. }
  15. }