/******************************************************************************* * Copyright (c) 2010, 2011 EclipseSource and others. All rights reserved. This * program and the accompanying materials are made available under the terms of * the Eclipse Public License v1.0 which accompanies this distribution, and is * available at http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Holger Staudacher - initial API and implementation * Artur Kronenberg - Fixed bug 322091 *******************************************************************************/ package org.eclipse.libra.warproducts.ui.editor; import org.eclipse.pde.internal.core.text.DocumentNodeFactory; import org.eclipse.pde.internal.core.text.IDocumentElementNode; public class WebXmlNodeFactory extends DocumentNodeFactory { private final WebXMLModel model; public WebXmlNodeFactory( final WebXMLModel model ) { this.model = model; } public IDocumentElementNode createDocumentNode( final String name, final IDocumentElementNode parent ) { IDocumentElementNode result = super.createDocumentNode( name, parent ); if( parent == null ) { model.setDocumentRoot( result ); } return result; } }