From 92657ae25d54d2d8f3318aadfb4591b5bad0a1b0 Mon Sep 17 00:00:00 2001 From: nitind Date: Wed, 7 Dec 2011 18:50:12 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'v201112071853'. --- .../modelqueryimpl/SimpleAssociationProvider.java | 49 ---------------------- 1 file changed, 49 deletions(-) delete mode 100644 bundles/org.eclipse.wst.xml.core/src-contentmodel/org/eclipse/wst/xml/core/internal/contentmodel/modelqueryimpl/SimpleAssociationProvider.java (limited to 'bundles/org.eclipse.wst.xml.core/src-contentmodel/org/eclipse/wst/xml/core/internal/contentmodel/modelqueryimpl/SimpleAssociationProvider.java') diff --git a/bundles/org.eclipse.wst.xml.core/src-contentmodel/org/eclipse/wst/xml/core/internal/contentmodel/modelqueryimpl/SimpleAssociationProvider.java b/bundles/org.eclipse.wst.xml.core/src-contentmodel/org/eclipse/wst/xml/core/internal/contentmodel/modelqueryimpl/SimpleAssociationProvider.java deleted file mode 100644 index de5242f176..0000000000 --- a/bundles/org.eclipse.wst.xml.core/src-contentmodel/org/eclipse/wst/xml/core/internal/contentmodel/modelqueryimpl/SimpleAssociationProvider.java +++ /dev/null @@ -1,49 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2002, 2006 IBM Corporation 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: - * IBM Corporation - initial API and implementation - * Jens Lukowski/Innoopract - initial renaming/restructuring - * - *******************************************************************************/ -package org.eclipse.wst.xml.core.internal.contentmodel.modelqueryimpl; - -import org.eclipse.wst.xml.core.internal.contentmodel.CMDocument; -import org.eclipse.wst.xml.core.internal.contentmodel.CMElementDeclaration; -import org.eclipse.wst.xml.core.internal.contentmodel.modelquery.ModelQueryCMProvider; -import org.w3c.dom.Element; -import org.w3c.dom.Node; - - -/** - * - */ -public class SimpleAssociationProvider extends BaseAssociationProvider -{ - protected ModelQueryCMProvider modelQueryCMProvider; - - public SimpleAssociationProvider(ModelQueryCMProvider modelQueryCMProvider) - { - this.modelQueryCMProvider = modelQueryCMProvider; - } - - public CMDocument getCorrespondingCMDocument(Node node) - { - return modelQueryCMProvider.getCorrespondingCMDocument(node); - } - - public CMElementDeclaration getCMElementDeclaration(Element element) - { - CMElementDeclaration result = null; - CMDocument cmDocument = getCorrespondingCMDocument(element); - if (cmDocument != null) - { - result = (CMElementDeclaration)cmDocument.getElements().getNamedItem(element.getNodeName()); - } - return result; - } -} -- cgit v1.2.3