Code Search for Developers
 
 
  

EclipseExtension.java from BIRT at Krugle


Show EclipseExtension.java syntax highlighted

/*******************************************************************************
 * Copyright (c) 2004 Actuate 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:
 *  Actuate Corporation  - initial API and implementation
 *******************************************************************************/

package org.eclipse.birt.core.framework.eclipse;

import org.eclipse.birt.core.framework.IConfigurationElement;
import org.eclipse.birt.core.framework.IExtension;


/**
 * 
 * @version $Revision: 1.4 $ $Date: 2005/05/08 06:58:29 $
 */
class EclipseExtension implements IExtension
{
	org.eclipse.core.runtime.IExtension object;
	EclipseExtension(org.eclipse.core.runtime.IExtension object)
	{
		this.object = object;
	}
	/* (non-Javadoc)
	 * @see org.eclipse.birt.core.framework.IExtension#getConfigurationElements()
	 */
	public IConfigurationElement[] getConfigurationElements( )
	{
		return EclipsePlatform.wrap(object.getConfigurationElements());
	}

	/**
	 * @return
	 */
	public String getExtensionPointUniqueIdentifier() {
		return object.getExtensionPointUniqueIdentifier();
	}
	/**
	 * @return
	 */
	public String getLabel() {
		return object.getLabel();
	}
	/**
	 * @return
	 */
	public String getNamespace() {
		return object.getNamespace();
	}
	/**
	 * @return
	 */
	public String getSimpleIdentifier() {
		return object.getSimpleIdentifier();
	}
	/**
	 * @return
	 */
	public String getUniqueIdentifier() {
		return object.getUniqueIdentifier();
	}
}




See more files for this project here

BIRT

BIRT is an open source, Eclipse-based reporting system that integrates with your application to produce compelling reports for both web and PDF.

Project homepage: http://www.eclipse.org/birt/phoenix/
Programming language(s): Java,XML
License: gpl2

  EclipseBundle.java
  EclipseConfigurationElement.java
  EclipseExtension.java
  EclipseExtensionPoint.java
  EclipseExtensionRegistry.java
  EclipsePath.java
  EclipsePlatform.java
  EclispeExecutableExtension.java
  package.html