79 Star 313 Fork 53

不在乎y/govcl

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
exception.go 2.07 KB
一键复制 编辑 原始数据 按行查看 历史
不在乎y 提交于 2018-06-03 05:10 . Squashed commit of the following:
//----------------------------------------
// 代码由GenlibVcl工具自动生成。
// Copyright © ying32. All Rights Reserved.
//
//----------------------------------------
package vcl
import (
. "github.com/ying32/govcl/vcl/api"
. "github.com/ying32/govcl/vcl/types"
)
type Exception struct {
IObject
instance uintptr
}
func ExceptionFromInst(inst uintptr) *Exception {
e := new(Exception)
e.instance = inst
return e
}
func ExceptionFromObj(obj IObject) *Exception {
e := new(Exception)
e.instance = CheckPtr(obj)
return e
}
func (e *Exception) Instance() uintptr {
return e.instance
}
func (e *Exception) IsValid() bool {
return e.instance != 0
}
func ExceptionClass() TClass {
return Exception_StaticClassType()
}
func (e *Exception) ToString() string {
return Exception_ToString(e.instance)
}
func (e *Exception) DisposeOf() {
Exception_DisposeOf(e.instance)
}
func (e *Exception) ClassType() TClass {
return Exception_ClassType(e.instance)
}
func (e *Exception) ClassName() string {
return Exception_ClassName(e.instance)
}
func (e *Exception) InstanceSize() int32 {
return Exception_InstanceSize(e.instance)
}
func (e *Exception) InheritsFrom(AClass TClass) bool {
return Exception_InheritsFrom(e.instance, AClass)
}
func (e *Exception) Equals(Obj IObject) bool {
return Exception_Equals(e.instance, CheckPtr(Obj))
}
func (e *Exception) GetHashCode() int32 {
return Exception_GetHashCode(e.instance)
}
func (e *Exception) BaseException() *Exception {
return ExceptionFromInst(Exception_GetBaseException(e.instance))
}
func (e *Exception) InnerException() *Exception {
return ExceptionFromInst(Exception_GetInnerException(e.instance))
}
func (e *Exception) Message() string {
return Exception_GetMessage(e.instance)
}
func (e *Exception) SetMessage(value string) {
Exception_SetMessage(e.instance, value)
}
func (e *Exception) StackTrace() string {
return Exception_GetStackTrace(e.instance)
}
func (e *Exception) StackInfo() uintptr {
return Exception_GetStackInfo(e.instance)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/ying32/govcl.git
git@gitee.com:ying32/govcl.git
ying32
govcl
govcl
v1.1.20

搜索帮助

0d507c66 1850385 C8b1a773 1850385