本文整理了Java中com.google.gwt.user.server.rpc.RPC.printTypeName
方法的一些代码示例,展示了RPC.printTypeName
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。RPC.printTypeName
方法的具体详情如下:
包路径:com.google.gwt.user.server.rpc.RPC
类名称:RPC
方法名:printTypeName
[英]Straight copy from com.google.gwt.dev.util.TypeInfo#getSourceRepresentation(Class) to avoid runtime dependency on gwt-dev.
[中]直接从com复制。谷歌。gwt。dev.util。TypeInfo#getSourceRepresentation(类),以避免运行时对gwt-dev的依赖。
代码示例来源:origin: com.google.gwt/gwt-servlet
private static String formatMethodNotFoundErrorMessage(Class<?> serviceIntf,
String serviceMethodName, Class<?>[] parameterTypes) {
StringBuffer sb = new StringBuffer();
sb.append("Could not locate requested method '");
sb.append(serviceMethodName);
sb.append("(");
for (int i = 0; i < parameterTypes.length; ++i) {
if (i > 0) {
sb.append(", ");
}
sb.append(printTypeName(parameterTypes[i]));
}
sb.append(")'");
sb.append(" in interface '");
sb.append(printTypeName(serviceIntf));
sb.append("'");
return sb.toString();
}
代码示例来源:origin: com.google.gwt/gwt-servlet
private static String formatIllegalAccessErrorMessage(Object target, Method serviceMethod) {
StringBuffer sb = new StringBuffer();
sb.append("Blocked attempt to access inaccessible method '");
sb.append(getSourceRepresentation(serviceMethod));
sb.append("'");
if (target != null) {
sb.append(" on target '");
sb.append(printTypeName(target.getClass()));
sb.append("'");
}
sb.append("; this is either misconfiguration or a hack attempt");
return sb.toString();
}
代码示例来源:origin: com.google.gwt/gwt-servlet
private static String formatIllegalArgumentErrorMessage(Object target, Method serviceMethod,
Object[] args) {
StringBuffer sb = new StringBuffer();
sb.append("Blocked attempt to invoke method '");
sb.append(getSourceRepresentation(serviceMethod));
sb.append("'");
if (target != null) {
sb.append(" on target '");
sb.append(printTypeName(target.getClass()));
sb.append("'");
}
sb.append(" with invalid arguments");
if (args != null && args.length > 0) {
sb.append(Arrays.asList(args));
}
return sb.toString();
}
代码示例来源:origin: com.google.gwt/gwt-servlet
return printTypeName(componentType) + "[]";
代码示例来源:origin: com.google.gwt/gwt-servlet
public static String encodeResponseForSuccess(Method serviceMethod, Object object,
SerializationPolicy serializationPolicy, int flags) throws SerializationException {
if (serviceMethod == null) {
throw new NullPointerException("serviceMethod cannot be null");
}
if (serializationPolicy == null) {
throw new NullPointerException("serializationPolicy");
}
Class<?> methodReturnType = serviceMethod.getReturnType();
if (methodReturnType != void.class && object != null) {
Class<?> actualReturnType;
if (methodReturnType.isPrimitive()) {
actualReturnType = getPrimitiveClassFromWrapper(object.getClass());
} else {
actualReturnType = object.getClass();
}
if (actualReturnType == null || !methodReturnType.isAssignableFrom(actualReturnType)) {
throw new IllegalArgumentException("Type '" + printTypeName(object.getClass())
+ "' does not match the return type in the method's signature: '"
+ getSourceRepresentation(serviceMethod) + "'");
}
}
return encodeResponse(methodReturnType, object, false, flags, serializationPolicy);
}
代码示例来源:origin: com.google.gwt/gwt-servlet
+ serviceIntfName + "', which is not implemented by '" + printTypeName(type)
+ "'; this is either misconfiguration or a hack attempt");
+ printTypeName(serviceIntf)
+ "', which doesn't extend RemoteService; this is either "
+ "misconfiguration or a hack attempt");
代码示例来源:origin: com.vaadin.external.gwt/gwt-user
private static String formatIllegalAccessErrorMessage(Object target, Method serviceMethod) {
StringBuffer sb = new StringBuffer();
sb.append("Blocked attempt to access inaccessible method '");
sb.append(getSourceRepresentation(serviceMethod));
sb.append("'");
if (target != null) {
sb.append(" on target '");
sb.append(printTypeName(target.getClass()));
sb.append("'");
}
sb.append("; this is either misconfiguration or a hack attempt");
return sb.toString();
}
代码示例来源:origin: com.vaadin.external.gwt/gwt-user
private static String formatMethodNotFoundErrorMessage(Class<?> serviceIntf,
String serviceMethodName, Class<?>[] parameterTypes) {
StringBuffer sb = new StringBuffer();
sb.append("Could not locate requested method '");
sb.append(serviceMethodName);
sb.append("(");
for (int i = 0; i < parameterTypes.length; ++i) {
if (i > 0) {
sb.append(", ");
}
sb.append(printTypeName(parameterTypes[i]));
}
sb.append(")'");
sb.append(" in interface '");
sb.append(printTypeName(serviceIntf));
sb.append("'");
return sb.toString();
}
代码示例来源:origin: net.wetheinter/gwt-user
private static String formatIllegalAccessErrorMessage(Object target, Method serviceMethod) {
StringBuffer sb = new StringBuffer();
sb.append("Blocked attempt to access inaccessible method '");
sb.append(getSourceRepresentation(serviceMethod));
sb.append("'");
if (target != null) {
sb.append(" on target '");
sb.append(printTypeName(target.getClass()));
sb.append("'");
}
sb.append("; this is either misconfiguration or a hack attempt");
return sb.toString();
}
代码示例来源:origin: net.wetheinter/gwt-user
private static String formatMethodNotFoundErrorMessage(Class<?> serviceIntf,
String serviceMethodName, Class<?>[] parameterTypes) {
StringBuffer sb = new StringBuffer();
sb.append("Could not locate requested method '");
sb.append(serviceMethodName);
sb.append("(");
for (int i = 0; i < parameterTypes.length; ++i) {
if (i > 0) {
sb.append(", ");
}
sb.append(printTypeName(parameterTypes[i]));
}
sb.append(")'");
sb.append(" in interface '");
sb.append(printTypeName(serviceIntf));
sb.append("'");
return sb.toString();
}
代码示例来源:origin: net.wetheinter/gwt-user
private static String formatIllegalArgumentErrorMessage(Object target, Method serviceMethod,
Object[] args) {
StringBuffer sb = new StringBuffer();
sb.append("Blocked attempt to invoke method '");
sb.append(getSourceRepresentation(serviceMethod));
sb.append("'");
if (target != null) {
sb.append(" on target '");
sb.append(printTypeName(target.getClass()));
sb.append("'");
}
sb.append(" with invalid arguments");
if (args != null && args.length > 0) {
sb.append(Arrays.asList(args));
}
return sb.toString();
}
代码示例来源:origin: com.vaadin.external.gwt/gwt-user
private static String formatIllegalArgumentErrorMessage(Object target, Method serviceMethod,
Object[] args) {
StringBuffer sb = new StringBuffer();
sb.append("Blocked attempt to invoke method '");
sb.append(getSourceRepresentation(serviceMethod));
sb.append("'");
if (target != null) {
sb.append(" on target '");
sb.append(printTypeName(target.getClass()));
sb.append("'");
}
sb.append(" with invalid arguments");
if (args != null && args.length > 0) {
sb.append(Arrays.asList(args));
}
return sb.toString();
}
代码示例来源:origin: net.wetheinter/gwt-user
return printTypeName(componentType) + "[]";
代码示例来源:origin: com.vaadin.external.gwt/gwt-user
return printTypeName(componentType) + "[]";
代码示例来源:origin: net.wetheinter/gwt-user
public static String encodeResponseForSuccess(Method serviceMethod, Object object,
SerializationPolicy serializationPolicy, int flags) throws SerializationException {
if (serviceMethod == null) {
throw new NullPointerException("serviceMethod cannot be null");
}
if (serializationPolicy == null) {
throw new NullPointerException("serializationPolicy");
}
Class<?> methodReturnType = serviceMethod.getReturnType();
if (methodReturnType != void.class && object != null) {
Class<?> actualReturnType;
if (methodReturnType.isPrimitive()) {
actualReturnType = getPrimitiveClassFromWrapper(object.getClass());
} else {
actualReturnType = object.getClass();
}
if (actualReturnType == null || !methodReturnType.isAssignableFrom(actualReturnType)) {
throw new IllegalArgumentException("Type '" + printTypeName(object.getClass())
+ "' does not match the return type in the method's signature: '"
+ getSourceRepresentation(serviceMethod) + "'");
}
}
return encodeResponse(methodReturnType, object, false, flags, serializationPolicy);
}
代码示例来源:origin: com.vaadin.external.gwt/gwt-user
public static String encodeResponseForSuccess(Method serviceMethod, Object object,
SerializationPolicy serializationPolicy, int flags) throws SerializationException {
if (serviceMethod == null) {
throw new NullPointerException("serviceMethod cannot be null");
}
if (serializationPolicy == null) {
throw new NullPointerException("serializationPolicy");
}
Class<?> methodReturnType = serviceMethod.getReturnType();
if (methodReturnType != void.class && object != null) {
Class<?> actualReturnType;
if (methodReturnType.isPrimitive()) {
actualReturnType = getPrimitiveClassFromWrapper(object.getClass());
} else {
actualReturnType = object.getClass();
}
if (actualReturnType == null || !methodReturnType.isAssignableFrom(actualReturnType)) {
throw new IllegalArgumentException("Type '" + printTypeName(object.getClass())
+ "' does not match the return type in the method's signature: '"
+ getSourceRepresentation(serviceMethod) + "'");
}
}
return encodeResponse(methodReturnType, object, false, flags, serializationPolicy);
}
代码示例来源:origin: net.wetheinter/gwt-user
+ serviceIntfName + "', which is not implemented by '" + printTypeName(type)
+ "'; this is either misconfiguration or a hack attempt");
+ printTypeName(serviceIntf)
+ "', which doesn't extend RemoteService; this is either "
+ "misconfiguration or a hack attempt");
代码示例来源:origin: com.vaadin.external.gwt/gwt-user
+ serviceIntfName + "', which is not implemented by '" + printTypeName(type)
+ "'; this is either misconfiguration or a hack attempt");
+ printTypeName(serviceIntf)
+ "', which doesn't extend RemoteService; this is either "
+ "misconfiguration or a hack attempt");
内容来源于网络,如有侵权,请联系作者删除!