Package com.bla.bla

Examples of com.bla.bla.Item


public class WriterGeneratorTest {
  @Test
  public void test() throws XMLStreamException {
    final HandWrittenImmutableModelWriter modelSerializer = new HandWrittenImmutableModelWriter();
    ShipOrder shipOrder = new ShipOrder("weiro", new ShipTo("name", "address", "city", "country"), new Item("title", "note", "quantity", "price"), "1234");

    final XMLStreamWriter xmlWriter = XMLOutputFactory.newInstance().createXMLStreamWriter(System.out);
    modelSerializer.write(shipOrder, xmlWriter);
  }
View Full Code Here

TOP

Related Classes of com.bla.bla.Item

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.