blob: d1f94d288200cbc70968eaba3c68236cd900e6ee [file] [log] [blame]
nitind958d79a2004-11-23 19:23:00 +00001/*******************************************************************************
amywu923ee602007-04-10 18:32:07 +00002 * Copyright (c) 2004, 2005 IBM Corporation and others.
nitind958d79a2004-11-23 19:23:00 +00003 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
amywu923ee602007-04-10 18:32:07 +00007 *
nitind958d79a2004-11-23 19:23:00 +00008 * Contributors:
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
david_williams63219a22005-04-10 01:59:51 +000011package org.eclipse.wst.css.core.internal.provisional.adapters;
nitind958d79a2004-11-23 19:23:00 +000012
13
14
david_williams4ad020f2005-04-18 08:00:30 +000015import org.eclipse.wst.sse.core.internal.provisional.INodeAdapter;
16import org.eclipse.wst.sse.core.internal.provisional.IStructuredModel;
nitind958d79a2004-11-23 19:23:00 +000017
18/**
19 *
20 */
21public interface IModelProvideAdapter extends INodeAdapter {
22
23 /**
24 *
25 */
26 void modelProvided(IStructuredModel newModel);
27
28 /**
29 */
30 void modelReleased(IStructuredModel newModel);
31
32 /**
33 */
34 void modelRemoved(IStructuredModel newModel);
amywu923ee602007-04-10 18:32:07 +000035}