Skip to main content
summaryrefslogtreecommitdiffstats
blob: 724b0d811b5cd20421b4d5273e62adfbd4ad8aba (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
42
43
44
45
46
47
48
49
50
51
52
53
/*******************************************************************************
 * Copyright (c) 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.common;
 

/**
 * This is the data structure for sending the BeanDescriptor info from
 * the BeanInfo vm to the IDE vm. It is serializable so that it can
 * be serialized for transmission.
 * <p>
 * It contains the properties of the BeanDescriptor. 
 * @since 1.1.0
 */
public class BeanRecord extends FeatureRecord {

	private static final long serialVersionUID = 1105979920664L;
	
	public String customizerClassName;
	public boolean mergeInheritedProperties;
	public boolean mergeInheritedOperations;
	public boolean mergeInheritedEvents;
	/**
	 * Names of properties that are to not be inherited in getAllProperties(). It is set only
	 * if the list is not the full list of inherited properties.
	 * If all inherited or mergeInheritedProperties is false, then the field will be <code>null</code>. Save space that way.
	 */
	public String[] notInheritedPropertyNames;
	/**
	 * Names of operations that are to not be inherited in getEAllOperations(). It is set only
	 * if the list is not the full list of inherited operations. 
	 * If all are inherited or if mergeInheritedOperations is false, then the field will be <code>null</code>. Save space that way.
	 */
	public String[] notInheritedOperationNames;
	/**
	 * Names of events that are to not be inherited in getAllEvents(). It is set only
	 * if the list is not the full list of inherited events.
	 * If all are inherited or if mergeInheritedEvents is false, then the field will be <code>null</code>. Save space that way.
	 */
	public String[] notInheritedEventNames;

}

Back to the top