本文整理了Java中org.eclipse.swt.SWT.findErrorText()
方法的一些代码示例,展示了SWT.findErrorText()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。SWT.findErrorText()
方法的具体详情如下:
包路径:org.eclipse.swt.SWT
类名称:SWT
方法名:findErrorText
[英]Answers a concise, human readable description of the error code.
[中]回答了对错误代码的简明易读描述。
代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x
/**
* Constructs a new instance of this class with its
* stack trace and error code filled in.
*
* @param code the SWT error code
*/
public SWTException (int code) {
this (code, SWT.findErrorText (code));
}
代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.swt.win32.win32.x86
/**
* Constructs a new instance of this class with its
* stack trace and error code filled in.
*
* @param code the SWT error code
*/
public SWTException (int code) {
this (code, SWT.findErrorText (code));
}
代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc
/**
* Constructs a new instance of this class with its
* stack trace and error code filled in.
*
* @param code the SWT error code
*/
public SWTError (int code) {
this (code, SWT.findErrorText (code));
}
代码示例来源:origin: org.eclipse.rap/org.eclipse.rap.rwt
/**
* Constructs a new instance of this class with its
* stack trace and error code filled in.
*
* @param code the SWT error code
*/
public SWTError (int code) {
this (code, SWT.findErrorText (code));
}
代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc
/**
* Constructs a new instance of this class with its
* stack trace and error code filled in.
*
* @param code the SWT error code
*/
public SWTException (int code) {
this (code, SWT.findErrorText (code));
}
代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc
/**
* Constructs a new instance of this class with its
* stack trace and error code filled in.
*
* @param code the SWT error code
*/
public SWTError (int code) {
this (code, SWT.findErrorText (code));
}
代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc
/**
* Constructs a new instance of this class with its
* stack trace and error code filled in.
*
* @param code the SWT error code
*/
public SWTException (int code) {
this (code, SWT.findErrorText (code));
}
代码示例来源:origin: org.eclipse.rap/org.eclipse.rap.rwt
/**
* Constructs a new instance of this class with its
* stack trace and error code filled in.
*
* @param code the SWT error code
*/
public SWTException (int code) {
this (code, SWT.findErrorText (code));
}
代码示例来源:origin: org.eclipse.swt.cocoa.macosx/x86_64
/**
* Constructs a new instance of this class with its
* stack trace and error code filled in.
*
* @param code the SWT error code
*/
public SWTError (int code) {
this (code, SWT.findErrorText (code));
}
代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.swt.win32.win32.x86
/**
* Constructs a new instance of this class with its
* stack trace and error code filled in.
*
* @param code the SWT error code
*/
public SWTError (int code) {
this (code, SWT.findErrorText (code));
}
代码示例来源:origin: org.eclipse.swt.cocoa.macosx/x86_64
/**
* Constructs a new instance of this class with its
* stack trace and error code filled in.
*
* @param code the SWT error code
*/
public SWTException (int code) {
this (code, SWT.findErrorText (code));
}
代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x
/**
* Constructs a new instance of this class with its
* stack trace and error code filled in.
*
* @param code the SWT error code
*/
public SWTError (int code) {
this (code, SWT.findErrorText (code));
}
代码示例来源:origin: org.eclipse.rap/org.eclipse.rap.rwt
throw ( SWTException )throwable;
String message = findErrorText( code );
if( detail != null ) {
message += detail;
代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x
String message = findErrorText (code);
if (detail != null) message += detail;
switch (code) {
代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.swt.win32.win32.x86
String message = findErrorText (code);
if (detail != null) message += detail;
switch (code) {
代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc
String message = findErrorText (code);
if (detail != null) message += detail;
switch (code) {
代码示例来源:origin: org.eclipse.swt.cocoa.macosx/x86_64
String message = findErrorText (code);
if (detail != null) message += detail;
switch (code) {
代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc
String message = findErrorText (code);
if (detail != null) message += detail;
switch (code) {
内容来源于网络,如有侵权,请联系作者删除!