blob: df270cd94b2201246416545a8b09d9cfb4f0c3b6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2004 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.provisional.contentmodel;
import org.eclipse.wst.xml.core.internal.contentmodel.CMDocument;
import org.eclipse.wst.xml.core.internal.contentmodel.CMNode;
/**
* ContentModelAdapter interface
*/
public interface ContentModelAdapter extends org.eclipse.wst.sse.core.internal.provisional.INodeAdapter {
/**
* getCMDocument method
*
* @return CMDocument
* @param notifer
* com.ibm.sed.model.INodeNotifier
*
* Returns CMDocument associated to the adapting node. For exampl : HTML
* CMDocument is associated to HTML Document node, DTD CMDocument is
* associated to DocumentType node, DTD/Schema CMDocument is associated to
* Element node (sometime with namespace), and taglib CMDocument is
* associated to taglib directive Element node.
*
* INodeNotifier is passed for stateless (singleton) INodeAdapter
* implementation.
*/
CMDocument getCMDocument(org.eclipse.wst.sse.core.internal.provisional.INodeNotifier notifier);
/**
* getDeclaration method
*
* @return CMNode
* @param notifer
* com.ibm.sed.model.INodeNotifier
*
* Returns ElementDefinition or AttributeDefinition for the adapting node.
*
* INodeNotifier is passed for stateless (singleton) INodeAdapter
* implementation.
*/
CMNode getDeclaration(org.eclipse.wst.sse.core.internal.provisional.INodeNotifier notifier);
}