/******************************************************************************* * Copyright (c) 1998, 2015 Oracle and/or its affiliates. All rights reserved. * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0 * which accompanies this distribution. * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Oracle - initial API and implementation from Oracle TopLink ******************************************************************************/ package org.eclipse.persistence.testing.oxm.mappings.anycollection.withgroupingelement; /** * @version $Header: AnyCollectionNoDefaultRootWithGroupingElementProject.java 02-nov-2006.10:56:44 gyorke Exp $ * @author mfobrien * @since 10.1.3.1.0 */ import org.eclipse.persistence.oxm.XMLDescriptor; import org.eclipse.persistence.descriptors.ClassDescriptor; //import org.eclipse.persistence.sessions.Project; import org.eclipse.persistence.oxm.mappings.*; public class AnyCollectionNoDefaultRootWithGroupingElementProject extends AnyCollectionWithGroupingElementProject { public ClassDescriptor buildChildDescriptor() { XMLDescriptor descriptor = new XMLDescriptor(); descriptor.setJavaClass(Child.class); /* * B5112171: 25 Apr 2006 * During marshalling - XML AnyObject and AnyCollection * mappings throw a NullPointerException when the * "document root element" on child object descriptors are not * all defined. These nodes will be ignored with a warning. * Root descriptor above must be anyObject|Collection mapping */ // make default root element undefined to invoke warning log //descriptor.setDefaultRootElement("child"); XMLDirectMapping mapping = new XMLDirectMapping(); mapping.setAttributeName("content"); mapping.setGetMethodName("getContent"); mapping.setSetMethodName("setContent"); mapping.setXPath("text()"); descriptor.addMapping(mapping); return descriptor; } }