233234235236237238239240241242243
} public static void testParse() throws Exception { XmlTime xt = XmlTime.Factory.parse("<xml-fragment>12:00:00</xml-fragment>"); Assert.assertEquals("12:00:00", xt.calendarValue().toString()); } }
224225226227228229230231232233