`
yeshaoting
  • 浏览: 684272 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

org.eclipse.swt.SWTException: Subclassing not allowed

阅读更多
错误: org.eclipse.swt.SWTException: Subclassing not allowed



创建一个继承Shell的类BorderTextShell后出错
因为在BorderTextShell构造方法中,
super(display, style);

要调用父类构造方法:
public Shell (Display display, int style) {
	this (display, null, style, 0, false);
}

Shell (Display display, Shell parent, int style, int /*long*/ handle, boolean embedded) {
	super ();
	checkSubclass ();
	...
}

其中,checkSubclass ()方法继承自Decoration类,用来验证子类是否存在于org.eclipse.swt.widgets包内.
若不在此包内,则报错.

解决办法:
1. package org.eclipse.swt.widgets;
2. 重写checkSubclass ()方法,方法体为空.即在子类中添加:
protected void checkSubclass()
	{
		
	}

3. 在类中声明Shell类的一个实例.(OO原则: 多用组合,少用继承)
  • 大小: 34 KB
分享到:
评论

相关推荐

    Introduction to Python Programming and Developing GUI Applications with PyQT

    - Create custom widgets by subclassing existing ones or combining multiple widgets. 5. **Deploying Applications:** - Package your application for distribution. - Ensure compatibility across ...

    Speaking JavaScript

    Like it or not, JavaScript is everywhere these days—from browser to server to mobile—and now you, too, need to learn the language or dive deeper than you have. This concise book guides you into and ...

    swift学习资料

    12. **Inheritance and Subclassing**:尽管Swift鼓励使用协议,但继承依然是实现代码复用的重要手段。 13. **Memory Management**:Swift采用了自动引用计数(ARC),开发者无需手动管理内存,但仍需理解其工作...

    JCNumberScrollviewView.zip

    1. **UIView Subclassing**:创建一个新的视图类,继承自UIView,添加自定义的行为和属性。 2. **Auto Layout**:设置约束以确保视图在不同屏幕尺寸和方向下正确布局。 3. **Core Animation**:用于实现动画效果,...

    IOS应用源码——UITableViewCell 视图扩展.zip

    3. **扩展属性和方法**:开发者可能通过类别(Category)或子类化(Subclassing)的方式,为UITableViewCell添加了新的属性和方法,以处理更复杂的业务逻辑或视图更新。 4. **布局管理**:可能是使用AutoLayout或...

    swift中文教学

    2. **子类生成(Subclassing)**: - 子类可以从父类继承属性和方法。 - 使用 `:` 后跟父类名称来指定继承关系。 3. **重写(Overriding)**: - 子类可以覆盖父类的属性和方法。 - 使用 `override` 关键字标记重写的...

    A freeware MFC class to support MFC subclassing(19KB)

    标题中的"A freeware MFC class to support MFC subclassing"是指一个免费的MFC(Microsoft Foundation Class)类库,它的主要功能是支持MFC的子类化机制。MFC是微软提供的一套C++类库,它封装了Windows API,方便...

    Tree树形控件

    4. **节点操作**:如何添加、删除、移动和修改节点,以及如何通过子类化(Subclassing)自定义控件的行为。 5. **图像列表**:如何使用CImageList类为树形控件添加图标,以提供更丰富的视觉效果。 6. **多选模式**...

    ( [Python.in.Practice(2013.8)].Mark.Summerfield.文字版(英语)

    Using a Class Decorator Instead of Subclassing...... 58 2.5. Façade Pattern .............................................. 59 2.6. Flyweight Pattern............................................ 64 ...

    Office2003,OfficeXP风格菜单[HookMenu151.rar]-精品源代码

    标题中的"Office2003,OfficeXP风格菜单[HookMenu151.rar]...通过研究和利用这些文件,开发者可以学习如何使用子类化(Subclassing)技术来改变菜单的行为,以及如何集成和使用ActiveX控件来增强应用程序的功能和外观。

    tensorflow

    - 支持顺序模型(Sequential)、函数式模型(Functional)和子类化模型(Subclassing)的构建方式。 7. **Eager Execution**: - Eager Execution 是 TensorFlow 的即时执行模式,提供更接近于 Python 的交互式...

    精彩编程与编程技巧-设定StatusBar的文字成不同的颜色...

    通过对StatusBar控件的Subclassing和处理WM_PAINT消息,我们能够自定义状态栏中每个面板的文本颜色,这在实际开发中非常有用,特别是在需要突出显示某些信息的情况下。通过上述详细分析,相信读者已经掌握了这一技巧...

    Subclassing the List View Control using MFC用MFC写的列表视图

    在Windows应用程序开发中,MFC(Microsoft Foundation Classes)是一个强大的库,它提供了对Windows API的封装,使得开发者能够更容易地创建用户界面。本主题聚焦于使用MFC来子类化列表视图控件,这是一种常见的任务...

    唐宇迪TensorFlow2教程课件代码

    学习如何使用Keras API构建深度学习模型,包括序列模型(Sequential)、函数式API(Functional API)以及子类化(Subclassing)。Keras的模块化设计使得构建复杂模型变得简单。 4. **模型训练**: 深入理解损失...

    python3.6.5参考手册 chm

    Notable changes in Python 3.6.5 What’s New In Python 3.5 Summary – Release highlights New Features PEP 492 - Coroutines with async and await syntax PEP 465 - A dedicated infix operator for matrix...

    Softgroup Components.NET Subclass and Hook Objects v2.0.3870

    HookApplication: provides application-wide messages subclassing. This class allows an application to capture a message before it is dispatched to a control or form. HookClipboard: provides ...

    visual c++ vc实现渐变的窗口标题栏.zip

    2. **自定义窗口过程(Subclassing)**:为了实现渐变效果,开发者可能使用了“子类化”技术,即替换窗口默认的消息处理函数。在`Subclass.cpp`中,可以看到一个自定义的窗口过程函数,如`WndProc`,这个函数可以...

    iOS核心动画高级技巧

    1. **扩展CALayer属性**:通过Category或Subclassing,可以为CALayer添加自定义属性,实现更灵活的动画控制。 2. **内容绘制**:利用`- (void)drawInContext:(CGContextRef)context`方法,可以自定义Layer的内容绘制...

    Prentice.Hall.C++.GUI.Programming.with.Qt.4.2nd.Edition.2008.chm

    Using Qt Jambi in the Eclipse IDE Integrating C++ Components with Qt Jambi Appendix D. Introduction to C++ for Java and C# Programmers Getting Started with C++ Main Language Differences The...

Global site tag (gtag.js) - Google Analytics