当前位置: 首页>>代码示例>>Java>>正文


Java TypeOracleException类代码示例

本文整理汇总了Java中com.google.gwt.core.ext.typeinfo.TypeOracleException的典型用法代码示例。如果您正苦于以下问题:Java TypeOracleException类的具体用法?Java TypeOracleException怎么用?Java TypeOracleException使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


TypeOracleException类属于com.google.gwt.core.ext.typeinfo包,在下文中一共展示了TypeOracleException类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: findType

import com.google.gwt.core.ext.typeinfo.TypeOracleException; //导入依赖的package包/类
/**
 * @param clazz class to find the type
 *
 * @return the {@link JType} denoted by the class given in parameter
 */

private JType findType( Class<?> clazz ) {
    if ( clazz.isPrimitive() ) {

        return JPrimitiveType.parse( clazz.getCanonicalName() );

    } else if ( clazz.isArray() ) {

        try {
            return context.getTypeOracle().parse( clazz.getCanonicalName() );
        } catch ( TypeOracleException e ) {
            logger.log( TreeLogger.WARN, "Cannot find the array denoted by the class " + clazz.getCanonicalName() );
            return null;
        }

    } else {
        return findClassType( clazz );
    }
}
 
开发者ID:nmorel,项目名称:gwt-jackson,代码行数:25,代码来源:RebindConfiguration.java

示例2: getBooleanType

import com.google.gwt.core.ext.typeinfo.TypeOracleException; //导入依赖的package包/类
private JType getBooleanType() {
  if (booleanType == null) {
    try {
      booleanType = oracle.parse("boolean");
    } catch (TypeOracleException e) {
      throw new RuntimeException(e);
    }
  }
  return booleanType;
}
 
开发者ID:GwtMaterialDesign,项目名称:gwt-material-demo,代码行数:11,代码来源:XMLElement.java

示例3: getDoubleType

import com.google.gwt.core.ext.typeinfo.TypeOracleException; //导入依赖的package包/类
private JType getDoubleType() {
  if (doubleType == null) {
    try {
      doubleType = oracle.parse("double");
    } catch (TypeOracleException e) {
      throw new RuntimeException(e);
    }
  }
  return doubleType;
}
 
开发者ID:GwtMaterialDesign,项目名称:gwt-material-demo,代码行数:11,代码来源:XMLElement.java

示例4: getIntType

import com.google.gwt.core.ext.typeinfo.TypeOracleException; //导入依赖的package包/类
private JType getIntType() {
  if (intType == null) {
    try {
      intType = oracle.parse("int");
    } catch (TypeOracleException e) {
      throw new RuntimeException(e);
    }
  }
  return intType;
}
 
开发者ID:GwtMaterialDesign,项目名称:gwt-material-demo,代码行数:11,代码来源:XMLElement.java


注:本文中的com.google.gwt.core.ext.typeinfo.TypeOracleException类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。