本文整理汇总了Java中de.erichseifert.vectorgraphics2d.intermediate.CommandSequence.iterator方法的典型用法代码示例。如果您正苦于以下问题:Java CommandSequence.iterator方法的具体用法?Java CommandSequence.iterator怎么用?Java CommandSequence.iterator使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类de.erichseifert.vectorgraphics2d.intermediate.CommandSequence
的用法示例。
在下文中一共展示了CommandSequence.iterator方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testCreateEmitsCreateCommand
import de.erichseifert.vectorgraphics2d.intermediate.CommandSequence; //导入方法依赖的package包/类
@Test
public void testCreateEmitsCreateCommand() {
VectorGraphics2D g = new VectorGraphics2D();
CommandSequence gCommands = g.getCommands();
Iterator<Command<?>> gCommandIterator = gCommands.iterator();
CreateCommand gCreateCommand = (CreateCommand) gCommandIterator.next();
VectorGraphics2D g2 = (VectorGraphics2D) g.create();
CreateCommand g2CreateCommand = null;
for (Command<?> g2Command : g2.getCommands()) {
if (g2Command instanceof CreateCommand) {
g2CreateCommand = (CreateCommand) g2Command;
}
}
assertNotEquals(gCreateCommand, g2CreateCommand);
assertEquals(g2, g2CreateCommand.getValue());
}
示例2: testVectorGraphics2DEmitsCreateCommand
import de.erichseifert.vectorgraphics2d.intermediate.CommandSequence; //导入方法依赖的package包/类
@Test
public void testVectorGraphics2DEmitsCreateCommand() {
VectorGraphics2D g = new VectorGraphics2D();
CommandSequence commands = g.getCommands();
Iterator<Command<?>> commandIterator = commands.iterator();
assertTrue(commandIterator.hasNext());
Command<?> firstCommand = commandIterator.next();
assertThat(firstCommand, instanceOf(CreateCommand.class));
// TODO: Move this assertion into a separate test case
assertEquals(g, ((CreateCommand) firstCommand).getValue());
}
示例3: StreamingFilter
import de.erichseifert.vectorgraphics2d.intermediate.CommandSequence; //导入方法依赖的package包/类
public StreamingFilter(CommandSequence stream) {
buffer = new LinkedList<>();
iterator = stream.iterator();
}