- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有可能以这样的方式结束:
ServiceChild (class) extends (or only partial implements) Service and overrides sayHello
Service (interface) implements hello,goodbye
Hello (has a mixin HelloMixin) has method sayHello
Goodbye (has a mixin GoodbyeMixin) has method sayGoodbye
我已经尝试使用 ServiceChild 中的关注方法执行上述操作
public class ServiceChild extends ConcernOf<Service> implements Hello
{
@Override
public String sayHello() {
return "Rulle Pharfar";
}
}
但是使用这种方法只有 Hello 实现被 java 检测到,而不是来自 Service 类的其余内容。那么还有其他可行的方法吗?
最佳答案
我不确定我是否理解您正在尝试做的事情,但是应该更多地将关注视为对它所关注的类的原始实现的包装。正如文档所述:
关注点是一个无状态片段,在调用之间共享,充当对 Mixin 调用的拦截器。
通常会这样做:
//Given interface MyStuff
@Mixins( MyStuff.Mixin.class )
@Concerns( MyStuffConcern.class )
public interface MyStuff
{
public void doStuff();
abstract class Mixin implements MyStuff
{
public void doStuff()
{
System.out.println( "Doing original stuff." );
}
}
}
public class MyStuffConcern extends ConcernOf<MyStuff>
implements MyStuff
{
public void doStuff()
{
// if I want to do anything before going down the call chain I'll do it here
System.out.println( "Doing stuff before original." );
// calling the next concern or actual implementation
next.doStuff();
// anything to do after calling down the call chain - here is the place for it
System.out.println( "Doing stuff after original." );
}
}
但是,如果您对接口(interface)有顾虑,您还应该实现所述接口(interface):
public abstract class ServiceChild extends ConcernOf<Service> implements Service
{
public String sayHello()
{
return "Rulle Pharfar";
}
}
希望这对您有所帮助。
关于apache-zest - Qi4J 关注部分实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18836221/
是否有任何方法可以获取 Zest (Eclipse) 中图形的布局(节点、线条、弯点)坐标?我尝试了几种方法,使用与 Zest 一起提供的 Draw2D,但我不知道如何使 Zest 对象成为 Draw
我正在使用 org.eclipse.zest.core.viewers.GraphViewer.setLayoutAlgorithm 来设置布局算法。 我的问题是,当渲染图形时,节点绘制得非常靠近彼此
有可能以这样的方式结束: ServiceChild (class) extends (or only partial implements) Service and overrides say
我正在使用 RCP 和 ZEST 创建一个应用程序来可视化图形。我的问题是:是否可以缩放在 ZEST(任何 ZEST 或 RCP api 或插件)上绘制的图形? 提前致谢-拉 git 最佳答案 我查看
我想更改节点和连接的一些视觉属性。如何做得更好?我发现视觉信息应用于从 org.eclipse.zest.core.viewers.GraphViewer.getFactory() 返回的模型工厂。共
我有一个相当大的 ZEST 树,显示哈希树(Merkletree)。由于其大小和有限的可用空间,它被压缩得非常严重,您无法再阅读它: 因此,我希望能够占据比实际外壳更多的空间,并实现滚动/拖动选项来使
我正在尝试使用 JAVA 中的 ZEST 框架绘制图表。代码的预期工作如下: 1) Shell 设置为 FormLayout。 2) 使用 FormData 自定义添加了标签、文本框和按钮。 3) 在
本文整理了Java中org.mozilla.zest.impl.ZestBasicRunner类的一些代码示例,展示了ZestBasicRunner类的具体用法。这些代码示例主要来源于Github/S
我正在开发一个项目,我打算在 JAVA 中创建一个类,用它来创建一个图表。详细地说,我想创建 2 个接口(interface) - VERTEX 和 EDGE,每个接口(interface)都有 ad
我已经使用 Zest GraphViewer 一个多星期了,现在试图发现它可以为我的应用程序做些什么,但到目前为止我还无法让它的行为符合我的要求。 我希望有人可以指出我需要的资源,因为我在 Googl
我开发了一个 eclipse 插件,用于使用 GEF-Zest 生成图形。我正在使用 SpringLayoutAlgorithm 作为布局算法(我也尝试过其他布局),但节点和边缘仍然相互重叠,从而创建
本文整理了Java中org.mozilla.zest.core.v1.ZestResponse类的一些代码示例,展示了ZestResponse类的具体用法。这些代码示例主要来源于Github/Stac
本文整理了Java中org.mozilla.zest.core.v1.ZestLoopTokenStringSet类的一些代码示例,展示了ZestLoopTokenStringSet类的具体用法。这些
本文整理了Java中org.mozilla.zest.core.v1.ZestVariables类的一些代码示例,展示了ZestVariables类的具体用法。这些代码示例主要来源于Github/St
本文整理了Java中org.mozilla.zest.core.v1.ZestLoopTokenSet类的一些代码示例,展示了ZestLoopTokenSet类的具体用法。这些代码示例主要来源于Git
本文整理了Java中org.mozilla.zest.core.v1.ZestFieldDefinition类的一些代码示例,展示了ZestFieldDefinition类的具体用法。这些代码示例主要
本文整理了Java中org.mozilla.zest.core.v1.ZestLoopFile类的一些代码示例,展示了ZestLoopFile类的具体用法。这些代码示例主要来源于Github/Stac
本文整理了Java中org.mozilla.zest.core.v1.ZestLoopInteger类的一些代码示例,展示了ZestLoopInteger类的具体用法。这些代码示例主要来源于Githu
本文整理了Java中org.mozilla.zest.core.v1.ZestJSON类的一些代码示例,展示了ZestJSON类的具体用法。这些代码示例主要来源于Github/Stackoverflo
本文整理了Java中org.mozilla.zest.core.v1.ZestExpressionResponseTime类的一些代码示例,展示了ZestExpressionResponseTime类
我是一名优秀的程序员,十分优秀!