Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 99070ffd2fbe9768a4f0a8012140191f8ade291b (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
/*******************************************************************************
 * Copyright (c) 2011 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
 ******************************************************************************/
package org.eclipse.equinox.metatype;

import org.osgi.service.metatype.AttributeDefinition;

/**
 * An {@link Extendable extendable} version of {@link AttributeDefinition 
 * attribute definition} allowing access to any {@link 
 * Extendable#getExtensionAttributes(String) extension attributes} provided by
 * third parties.
 * <p/>
 * For example, an Equinox attribute definition will contain all XML attributes
 * specified as part of the &lt;AD/&gt; element with namespaces other than the 
 * metatype namespace as extension attributes.
 * 
 * @since 1.2
 *
 */
public interface EquinoxAttributeDefinition extends AttributeDefinition, Extendable {
	// Empty interface to support extendable attribute definitions.
}

Back to the top