- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.mozilla.zest.core.v1.ZestLoopInteger
类的一些代码示例,展示了ZestLoopInteger
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZestLoopInteger
类的具体详情如下:
包路径:org.mozilla.zest.core.v1.ZestLoopInteger
类名称:ZestLoopInteger
[英]This class represent a loop through a set of integers.
[中]此类表示通过一组整数的循环。
代码示例来源:origin: mozilla/zest
@Override
public ZestLoopInteger deepCopy() {
ZestLoopStateInteger state = this.getCurrentState().deepCopy();
ZestLoopTokenIntegerSet set = this.getSet();
ZestLoopInteger copy = new ZestLoopInteger(set.getStart(), set.getEnd());
copy.setVariableName(this.getVariableName());
for (ZestStatement stmt : this.getStatements()) {
copy.addStatement(stmt.deepCopy());
}
copy.setCurrentState(state);
copy.setEnabled(this.isEnabled());
return copy;
}
代码示例来源:origin: mozilla/zest
public void endLoop() {
this.endLoop(getSet());
}
/**
代码示例来源:origin: mozilla/zest
/**
* sets a new start index
*
* @param newStart the new start index
*/
public void setStart(int newStart) {
this.setSet(new ZestLoopTokenIntegerSet(newStart, getEnd()));
}
/**
代码示例来源:origin: mozilla/zest
/**
* sets the new end index
*
* @param newEnd the new end index
*/
public void setEnd(int newEnd) {
this.setSet(new ZestLoopTokenIntegerSet(this.getStart(), newEnd));
}
}
代码示例来源:origin: mozilla/zest
@Test
public void testEndLoop() {
ZestLoopInteger loop = new ZestLoopInteger(0, 10);
for (ZestStatement stmt : statements) {
loop.addStatement(stmt);
}
loop.endLoop();
assertTrue(loop.getCurrentState().isLastState(loop.getSet())); // it
// recognize
// the
// last state
assertFalse(loop.loop()); // it returs false if the method loop is called
// again
}
代码示例来源:origin: mozilla/zest
@Test
public void testZestLoopDifferentStep() {
ZestLoopInteger loop = new ZestLoopInteger("with step = 7", 0, 100);
for (ZestStatement stmt : statements) {
loop.addStatement(stmt);
}
loop.setStep(7);
int counter = 0;
while (loop.hasMoreElements()) {
if (loop.loop()) {
++counter;
assertTrue("step: " + counter, loop.getCurrentToken() == counter * 7);
} else {
assertTrue("Last Step", loop.getCurrentToken() == loop.getEnd() - 1);
}
}
}
}
代码示例来源:origin: mozilla/zest
@Test
public void testZestLoopNext() {
LinkedList<ZestStatement> statements2 = new LinkedList<>(statements);
statements2.add(0, new ZestControlLoopNext());
ZestLoopInteger loop = new ZestLoopInteger(0, 10);
for (ZestStatement stmt : statements2) {
loop.addStatement(stmt);
}
int counter = 0;
while (loop.hasMoreElements()) {
ZestStatement tmp = loop.nextElement();
assertTrue("iteration " + counter, tmp instanceof ZestControlLoopNext);
counter++;
}
}
代码示例来源:origin: mozilla/zest
@Test
public void testDeepCopy() {
ZestLoopInteger loop = new ZestLoopInteger(0, 10);
for (ZestStatement stmt : statements) {
loop.addStatement(stmt);
}
loop.loop();
ZestLoopInteger copy = loop.deepCopy();
assertTrue(loop.getCurrentState().equals(copy.getCurrentState()));
}
代码示例来源:origin: mozilla/zest
@Override
public void increase() {
this.getCurrentState().increase(getSet());
}
代码示例来源:origin: mozilla/zest
@Test
public void testLoop() {
int maxIt = 10;
ZestLoopInteger loop = new ZestLoopInteger(0, maxIt);
for (ZestStatement stmt : statements) {
loop.addStatement(stmt);
}
int iteration = loop.getCurrentToken();
while (loop.loop()) {
++iteration;
assertTrue("right iteration index", iteration == loop.getCurrentToken());
}
assertTrue(
"right number of iterations",
loop.getCurrentToken() == maxIt - 1); // start is inclusive, end
// is exclusive!
}
代码示例来源:origin: mozilla/zest
@Test
public void testSerializationLoopInteger() {
ZestLoopInteger loop = new ZestLoopInteger(0, 1235);
for (ZestStatement stmt : statements) {
loop.addStatement(stmt);
}
String loopString = ZestJSON.toString(loop);
ZestLoopInteger copy = (ZestLoopInteger) ZestJSON.fromString(loopString);
String copyString = ZestJSON.toString(copy);
// System.out.println("===============================");
// System.out.println(" LOOP INTEGER");
// System.out.println("===============================");
// System.out.println(copyString);
assertTrue(copyString.equals(loopString));
}
代码示例来源:origin: mozilla/zest
ZestLoopInteger loopInt = new ZestLoopInteger(-10, 10);
loopInt.setStep(i);
loopInt.addStatement(request);
script.add(loopInt);
代码示例来源:origin: mozilla/zest
/**
* Gets the start index.
*
* @return the start index
*/
public int getStart() {
return this.getSet().getStart();
}
代码示例来源:origin: mozilla/zest
@Override
public Integer getCurrentToken() {
if (super.getCurrentToken() == null) {
super.init(getSet(), getStatements());
}
return super.getCurrentToken();
}
代码示例来源:origin: mozilla/zest
System.out.println(
"FOR tokens FROM "
+ loopInteger.getStart()
+ " TO "
+ loopInteger.getEnd()
+ " DO");
} else {
代码示例来源:origin: mozilla/zest
@Test
public void testHasMoreElements() {
int numOfToken = 10;
ZestLoopInteger loop = new ZestLoopInteger(0, numOfToken);
for (ZestStatement stmt : statements) {
loop.addStatement(stmt);
}
int counter = 0;
while (loop.hasMoreElements()) {
ZestStatement stmt = loop.nextElement();
assertTrue(
"statement " + counter,
stmt.getClass()
.equals(
statements
.get(counter % statements.size())
.getClass())); // check if the classes of the
// statements are equals
counter++;
}
assertTrue(
"right number of iteration ",
counter == (numOfToken) * statements.size()); // include start, exclude end!
}
代码示例来源:origin: mozilla/zest
@Override
public void toLastState() {
this.getCurrentState().toLastState(getSet());
}
代码示例来源:origin: mozilla/zest
System.out.println(" ZestLoopInteger");
System.out.println("---------------------");
ZestLoopInteger loopInteger = new ZestLoopInteger(0, 1458);
for (ZestStatement stmt : statements) {
loopInteger.addStatement(stmt);
代码示例来源:origin: mozilla/zest
/**
* sets the step for the loop
*
* @param step the step for this loop
*/
public void setStep(int step) {
this.getSet().setStep(step);
}
/**
代码示例来源:origin: mozilla/zest
@Test
public void testZestLoopBreak() {
statements.clear();
for (int i = 0; i < 10; i++) {
statements.add(new ZestActionPrint("" + i));
}
List<ZestStatement> statements2 = new LinkedList<>(statements);
statements2.add(new ZestControlLoopBreak());
ZestLoopInteger loop = new ZestLoopInteger(0, 1000000);
for (ZestStatement stmt : statements2) {
loop.addStatement(stmt);
}
int counterIteration = 0;
while (loop.hasMoreElements()) {
loop.nextElement().getElementType();
counterIteration++;
}
assertTrue(counterIteration == statements2.size() - 1);
}
是否有任何方法可以获取 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类
我是一名优秀的程序员,十分优秀!