Skip to main content
summaryrefslogtreecommitdiffstats
blob: aabdaf450c10ff208b5fb3b76b80caa91dd8843b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*******************************************************************************
 * Copyright (c) 2001, 2005 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
 *******************************************************************************/
package org.eclipse.jem.internal.beaninfo;
/*
 *  $RCSfile: BeanEvent.java,v $
 *  $Revision: 1.7 $  $Date: 2005/08/24 20:31:28 $ 
 */

import org.eclipse.jem.java.JavaEvent;


/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Bean Event</b></em>'.
 * <!-- end-user-doc -->
 *
 * <!-- begin-model-doc -->
 * Event from Introspection/Reflection.
 * <p>
 * The BeanEvent will be under the JavaClass' events and allEvents feature. Each BeanEvent will be decorated by an EventSetDecorator.
 * <!-- end-model-doc -->
 *
 *
 * @see org.eclipse.jem.internal.beaninfo.BeaninfoPackage#getBeanEvent()
 * @model
 * @generated
 */

public interface BeanEvent extends JavaEvent{

	
	
}

Back to the top