public DescribeVpcsResult unmarshall(StaxUnmarshallerContext context) throws Exception { DescribeVpcsResult describeVpcsResult = new DescribeVpcsResult(); int originalDepth = context.getCurrentDepth(); int targetDepth = originalDepth + 1; if (context.isStartOfDocument()) targetDepth += 1; while (true) { XMLEvent xmlEvent = context.nextEvent(); if (xmlEvent.isEndDocument()) return describeVpcsResult; if (xmlEvent.isAttribute() || xmlEvent.isStartElement()) { if (context.testExpression("vpcSet/item", targetDepth)) { describeVpcsResult.withVpcs(VpcStaxUnmarshaller.getInstance().unmarshall(context)); continue; } } else if (xmlEvent.isEndElement()) { if (context.getCurrentDepth() < originalDepth) { return describeVpcsResult; } } } }
public DescribeVpcsResult unmarshall(StaxUnmarshallerContext context) throws Exception { DescribeVpcsResult describeVpcsResult = new DescribeVpcsResult(); int originalDepth = context.getCurrentDepth(); int targetDepth = originalDepth + 1; if (context.isStartOfDocument()) targetDepth += 1; while (true) { int xmlEvent = context.nextEvent(); if (xmlEvent == XmlPullParser.END_DOCUMENT) return describeVpcsResult; if (xmlEvent == XmlPullParser.START_TAG) { if (context.testExpression("vpcSet/item", targetDepth)) { describeVpcsResult.getVpcs().add(VpcStaxUnmarshaller.getInstance().unmarshall(context)); continue; } } else if (xmlEvent == XmlPullParser.END_TAG) { if (context.getCurrentDepth() < originalDepth) { return describeVpcsResult; } } } }