blob: 0527126b7ce738f90be3b714417cd65c4a401d6c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 Oracle Corporation.
* 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:
* Oracle - initial API and implementation
*
********************************************************************************/
package org.eclipse.jst.jsf.common.metadata.internal;
/**
* Experimental. Subject to change.
*
*/
public class MetaDataChangeNotificationEvent implements
IMetaDataChangeNotificationEvent {
private String _uri;
private IMetaDataLocator _locator;
private int _type;
public MetaDataChangeNotificationEvent(IMetaDataLocator locator, String uri, int type){
this._locator = locator;
this._uri = uri;
this._type = type;
}
public int getEventType() {
return _type;
}
public IMetaDataLocator getLocator() {
return _locator;
}
public String getURI() {
return _uri;
}
}