Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

TypeData.java 468B

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