本文整理汇总了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 );
}
}
示例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;
}
示例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;
}
示例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;
}