KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > pde > internal > core > plugin > AttributeChangedEvent


1 /*******************************************************************************
2  * Copyright (c) 2000, 2006 IBM Corporation and others.
3  * 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
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.pde.internal.core.plugin;
12
13 import org.eclipse.pde.core.IModelChangeProvider;
14 import org.eclipse.pde.core.ModelChangedEvent;
15
16 public class AttributeChangedEvent extends ModelChangedEvent {
17     public static final String JavaDoc P_ATTRIBUTE_VALUE = "att_value"; //$NON-NLS-1$
18

19     private Object JavaDoc attribute;
20
21     public AttributeChangedEvent(IModelChangeProvider provider, Object JavaDoc element,
22             Object JavaDoc attribute, String JavaDoc oldValue, String JavaDoc newValue) {
23         super(provider, element, P_ATTRIBUTE_VALUE, oldValue, newValue);
24         this.attribute = attribute;
25     }
26
27     public Object JavaDoc getChangedAttribute() {
28         return attribute;
29     }
30 }
31
Popular Tags