blob: 0c7711900361f64dea3602389b3f88352ef5754f [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.event;
nitind958d79a2004-11-23 19:23:00 +000012
david_williams63219a22005-04-10 01:59:51 +000013import org.eclipse.wst.css.core.internal.provisional.document.ICSSModel;
14import org.eclipse.wst.css.core.internal.provisional.document.ICSSSelector;
nitind958d79a2004-11-23 19:23:00 +000015
16
17
18/**
19 *
20 */
21public interface ICSSStyleListener {
22
23 /**
24 *
25 */
26 void styleChanged(ICSSModel srcModel, ICSSSelector[] removed, ICSSSelector[] added, String media);
27
28 /**
29 *
30 */
31 void styleUpdate(ICSSModel srcModel);
amywu923ee602007-04-10 18:32:07 +000032}