/******************************************************************************* * ============LICENSE_START==================================================== * * org.onap.aaf * * =========================================================================== * * Copyright © 2017 AT&T Intellectual Property. All rights reserved. * * =========================================================================== * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * Unless required by applicable law or agreed to in writing, software * * distributed under the License is distributed on an "AS IS" BASIS, * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * * limitations under the License. * * ============LICENSE_END==================================================== * * * * ECOMP is a trademark and service mark of AT&T Intellectual Property. * * ******************************************************************************/ package com.data.test; import org.junit.Test; import org.onap.aaf.rosetta.JaxInfo; import s.xsd.LargerData; public class JU_Struct { public final static String XML ="\n" + "\n" + "sd object 1\n" + "1346439215932\n" + "Item 1.1\n" + "Item 1.2\n" + "\n" + "\n" + "sd object 2\n" + "1346439215932\n" + "Item 2.1\n" + "Item 2.2\n" + "\n" + "MyFluff\n" + "\n"; // @Test // public void test2() throws Exception { // // SampleData sd = new SampleData(); // sd.setDate(new Date().getTime()); // sd.setId("myId"); // sd.getItem().add("Item 1.1"); // // InObj inObj = new InObj(SampleData.class); // // JaxSet jaxSet = JaxSet.get(SampleData.class); // Setter setter = jaxSet.setter("id"); // setter.set(sd, "Your ID"); // // for(Entry> es : jaxSet.getters()) { // System.out.print(es.getKey()); // System.out.print(' '); // System.out.println(es.getValue().get(sd)); // } // } @Test public void test() throws Exception { JaxInfo ji = JaxInfo.build(LargerData.class); System.out.println(ji); } }