本文整理匯總了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();
}