/**
* Sequenced type SDO 2 test.
*/
public void testMixedQuoteType() throws IOException {
MixedQuote quote = SequencesFactory.INSTANCE.createMixedQuote();
Type t = ((DataObject)quote).getType();
List ps = t.getProperties();
Sequence sequence = quote.getMixed();
sequence.add("\n ");
quote.setSymbol("fbnt");
sequence.add("\n ");
quote.setCompanyName("FlyByNightTechnology");
sequence.add("\n some text\n ");
List quotes = quote.getQuotes();
MixedQuote child = SequencesFactory.INSTANCE.createMixedQuote();
quotes.add(child);
child.setPrice(new BigDecimal("2000.0"));
sequence.add("\n more text\n ");
sequence.add("price", new BigDecimal("1000.0"));