Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » BIRT » Trigger problem with BIRT 2.5.0
Trigger problem with BIRT 2.5.0 [message #479393] Mon, 10 August 2009 20:44 Go to next message
farideh  is currently offline farideh Friend
Messages: 11
Registered: July 2009
Junior Member
Hi everybody,

I updated my Eclipse IDE to 3.5 and also updated to BIRT 2.5.0.
After this update my "Trigger" dose not work correctly.
I have a pie chart and i add a trigger with the ONMOUSEOVER_LITERAL
condition and a SHOW_TOOLTIP_LITERAL action type.
Trigger is associated with a series type as follows:

sePie = (PieSeries) PieSeriesImpl.create();
ActionValue actionValue = TooltipValueImpl.create(0, null);
Action action = ActionImpl.create(ActionType.SHOW_TOOLTIP_LITERAL,
actionValue);
Trigger mouseOver =
TriggerImpl.create(TriggerCondition.ONMOUSEOVER_LITERAL,acti on);
sePie.getTriggers().add(mouseOver);

The co-ordinates for MouseOver are not determined properly.
This results that the wrong information are shown.
Any idea is welcome.

Thanks in advance.
Re: Trigger problem with BIRT 2.5.0 [message #479584 is a reply to message #479393] Tue, 11 August 2009 15:53 Go to previous messageGo to next message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

I tried this with 2.5 and I did not see the problem. What device are
you rendering to?

Jason

farideh wrote:
> Hi everybody,
>
> I updated my Eclipse IDE to 3.5 and also updated to BIRT 2.5.0.
> After this update my "Trigger" dose not work correctly. I have a pie
> chart and i add a trigger with the ONMOUSEOVER_LITERAL condition and a
> SHOW_TOOLTIP_LITERAL action type.
> Trigger is associated with a series type as follows:
>
> sePie = (PieSeries) PieSeriesImpl.create();
> ActionValue actionValue = TooltipValueImpl.create(0, null); Action
> action = ActionImpl.create(ActionType.SHOW_TOOLTIP_LITERAL, actionValue);
> Trigger mouseOver =
> TriggerImpl.create(TriggerCondition.ONMOUSEOVER_LITERAL,acti on);
> sePie.getTriggers().add(mouseOver);
>
> The co-ordinates for MouseOver are not determined properly.
> This results that the wrong information are shown.
> Any idea is welcome.
>
> Thanks in advance.
>
>
Re: Trigger problem with BIRT 2.5.0 [message #479786 is a reply to message #479584] Wed, 12 August 2009 14:05 Go to previous messageGo to next message
farideh  is currently offline farideh Friend
Messages: 11
Registered: July 2009
Junior Member
hi Jason,

the same problem appears when I use the org.eclipse.birt.chart.examples.
I just add my trigger “mouseOver” in InteractivityChart.java and
I disable Explosion for this chart:
sePie.setExplosion(0);

farideh
Re: Trigger problem with BIRT 2.5.0 [message #479818 is a reply to message #479786] Wed, 12 August 2009 15:48 Go to previous messageGo to next message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

Farideh,

Can you give me the exact error? I am not seeing one.

Jason

farideh wrote:
> hi Jason,
>
> the same problem appears when I use the org.eclipse.birt.chart.examples.
> I just add my trigger �mouseOver� in InteractivityChart.java and I
> disable Explosion for this chart:
> sePie.setExplosion(0);
>
> farideh
>
>
Re: Trigger problem with BIRT 2.5.0 [message #479875 is a reply to message #479818] Wed, 12 August 2009 20:21 Go to previous messageGo to next message
farideh  is currently offline farideh Friend
Messages: 11
Registered: July 2009
Junior Member
Hi Jason,

In this case I get no Error but wrong value is shown when I move the mouse
over a slice.

For example the pie chart contains 4 different slices:

Label Value
A 10
B 30
C 40
D 20

i add a trigger with the ONMOUSEOVER_LITERAL condition and a
SHOW_TOOLTIP_LITERAL action type.

Now if I position the mouse over first slice (Label A), the value 10 shall
be shown, but the value of the next neighbours slice is shown.

I hope it is now clear what I exactly mine, if not I can send you a
screenshot of my chart in which the problem can be easily seen.

Farideh
Re: Trigger problem with BIRT 2.5.0 [message #480040 is a reply to message #479875] Thu, 13 August 2009 14:41 Go to previous messageGo to next message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

Farideh,

I can not reproduce the error. How are you rendering (output format and
location)?

Take a look at the attached example.

Jason


import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.BufferedWriter;
import java.io.FileWriter;
import java.util.ArrayList;
import java.util.Vector;

import org.eclipse.birt.chart.api.ChartEngine;
import org.eclipse.birt.chart.device.EmptyUpdateNotifier;
import org.eclipse.birt.chart.device.IDeviceRenderer;
import org.eclipse.birt.chart.device.IDisplayServer;
import org.eclipse.birt.chart.device.IImageMapEmitter;
import org.eclipse.birt.chart.factory.GeneratedChartState;
import org.eclipse.birt.chart.factory.IGenerator;
import org.eclipse.birt.chart.model.Chart;
import org.eclipse.birt.chart.model.ChartWithAxes;
import org.eclipse.birt.chart.model.attribute.ActionType;
import org.eclipse.birt.chart.model.attribute.ActionValue;
import org.eclipse.birt.chart.model.attribute.Anchor;
import org.eclipse.birt.chart.model.attribute.AxisType;
import org.eclipse.birt.chart.model.attribute.Bounds;
import org.eclipse.birt.chart.model.attribute.ChartDimension;
import org.eclipse.birt.chart.model.attribute.DataType;
import org.eclipse.birt.chart.model.attribute.IntersectionType;
import org.eclipse.birt.chart.model.attribute.LeaderLineStyle;
import org.eclipse.birt.chart.model.attribute.LegendItemType;
import org.eclipse.birt.chart.model.attribute.LineStyle;
import org.eclipse.birt.chart.model.attribute.Position;
import org.eclipse.birt.chart.model.attribute.SortOption;
import org.eclipse.birt.chart.model.attribute.TickStyle;
import org.eclipse.birt.chart.model.attribute.TriggerCondition;
import org.eclipse.birt.chart.model.attribute.impl.BoundsImpl;
import org.eclipse.birt.chart.model.attribute.impl.ColorDefinitionI mpl;
import org.eclipse.birt.chart.model.attribute.impl.GradientImpl;
import org.eclipse.birt.chart.model.attribute.impl.LineAttributesIm pl;
import org.eclipse.birt.chart.model.attribute.impl.TooltipValueImpl ;
import org.eclipse.birt.chart.model.attribute.impl.URLValueImpl;
import org.eclipse.birt.chart.model.component.Axis;
import org.eclipse.birt.chart.model.component.Series;
import org.eclipse.birt.chart.model.component.impl.SeriesImpl;
import org.eclipse.birt.chart.model.data.Action;
import org.eclipse.birt.chart.model.data.BaseSampleData;
import org.eclipse.birt.chart.model.data.DataFactory;
import org.eclipse.birt.chart.model.data.NumberDataSet;
import org.eclipse.birt.chart.model.data.OrthogonalSampleData;
import org.eclipse.birt.chart.model.data.Query;
import org.eclipse.birt.chart.model.data.SampleData;
import org.eclipse.birt.chart.model.data.SeriesDefinition;
import org.eclipse.birt.chart.model.data.TextDataSet;
import org.eclipse.birt.chart.model.data.Trigger;
import org.eclipse.birt.chart.model.data.impl.ActionImpl;
import org.eclipse.birt.chart.model.data.impl.NumberDataSetImpl;
import org.eclipse.birt.chart.model.data.impl.QueryImpl;
import org.eclipse.birt.chart.model.data.impl.SeriesDefinitionImpl;
import org.eclipse.birt.chart.model.data.impl.TextDataSetImpl;
import org.eclipse.birt.chart.model.data.impl.TriggerImpl;
import org.eclipse.birt.chart.model.impl.ChartWithAxesImpl;
import org.eclipse.birt.chart.model.impl.ChartWithoutAxesImpl;
import org.eclipse.birt.chart.model.layout.Legend;
import org.eclipse.birt.chart.model.layout.Plot;
import org.eclipse.birt.chart.model.type.BarSeries;
import org.eclipse.birt.chart.model.type.LineSeries;
import org.eclipse.birt.chart.model.type.PieSeries;
import org.eclipse.birt.chart.model.type.impl.LineSeriesImpl;
import org.eclipse.birt.chart.model.type.impl.BarSeriesImpl;
import org.eclipse.birt.chart.model.type.impl.PieSeriesImpl;
import org.eclipse.birt.core.framework.PlatformConfig;
import org.eclipse.emf.ecore.util.EcoreUtil;

/**
* Test decription:
* </p>
* Chart script: BeforeDrawLegendItem()
* </p>
*/

public class StandaloneChart {

private static String OUTPUT = "output/Standalone.png"; //$NON-NLS-1$
private static String OUTPUT_HTML = "output/Standalone.html"; //$NON-NLS-1$

/**
* Comment for <code>serialVersionUID</code>
*/
private static final long serialVersionUID = 1L;

/**
* A chart model instance
*/
private Chart cm = null;

/**
* The swing rendering device
*/
private IDeviceRenderer dRenderer = null;
private IDisplayServer dServer = null;

private GeneratedChartState gcs = null;

/**
* execute application
*
* @param args
*/
public static void main(String[] args) {
new StandaloneChart();
System.out.println("Finished");
}

/**
* Constructor
*/
public StandaloneChart() {
PlatformConfig pf = new PlatformConfig();
pf.setProperty("STANDALONE", true);

//Returns a singleton instance of the Chart Engine
ChartEngine ce = ChartEngine.instance(pf);
//Returns a singleton instance of the Generator
IGenerator gr = ce.getGenerator();

try {
//device renderers for dv.SWT, dv.PNG, dv.JPG
//dv.PDF, dv.SVG, dv.SWING, dv.PNG24, div.BMP
dRenderer = ce.getRenderer("dv.PNG");
dServer = dRenderer.getDisplayServer();
} catch (Exception ex) {
ex.printStackTrace();
}

//cm = new AfterDatasetFilled().GetChartModel();
//cm = StandaloneChart.createStackedBar();
//cm = StandaloneChart.createGrouponY();
//cm = StandaloneChart.createStockChart();
//cm = StandaloneChart.createTest();
cm = StandaloneChart.showTooltip_PieChart();

BufferedImage img = new BufferedImage(600, 600,
BufferedImage.TYPE_INT_ARGB);
Graphics g = img.getGraphics();

Graphics2D g2d = (Graphics2D) g;
//Look at IDeviceRenderer.java for all properties
//like DPI_RESOLUTION
//FILE_IDENTIFIER
//FORMAT_IDENTIFIER
//UPDATE_NOTIFIER
dRenderer.setProperty(IDeviceRenderer.GRAPHICS_CONTEXT, g2d);
dRenderer.setProperty(IDeviceRenderer.FILE_IDENTIFIER, OUTPUT);
//$NON-NLS-1$

//Set the bounds for the entire chart
Bounds bo = BoundsImpl.create(0, 0, 600, 600);
bo.scale(72d / dRenderer.getDisplayServer().getDpiResolution());

try {

gcs = gr.build(dServer, cm, bo, null, null, null);
//gcs.getRunTimeContext().setActionRenderer( new MyActionRenderer());
dRenderer.setProperty(IDeviceRenderer.UPDATE_NOTIFIER,
new EmptyUpdateNotifier(cm, gcs.getChartModel()));

gr.render(dRenderer, gcs);
String im = ((IImageMapEmitter) dRenderer).getImageMap();

BufferedWriter out = new BufferedWriter(new FileWriter(OUTPUT_HTML));

out.write("<html>");
out.newLine();
out.write("<body>");
out.newLine();
out.write("<div>");
out.newLine();
out.write("<map name='testmap'>");
out.write(im);
out.write("</map>");
out.newLine();
out
.write("<img id=myimage src='standalone.png'
usemap='#testmap'></img>");
out.newLine();
out.write("</div>");
out.newLine();
out.write("</body>");
out.newLine();
out.write("</html>");
out.newLine();
out.close();

System.out.println(im);

} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public static final Chart showTooltip_PieChart( )
{
ChartWithoutAxesImpl cwoaPie =
(ChartWithoutAxesImpl)ChartWithoutAxesImpl.create( );

// Chart Type
cwoaPie.setType( "Pie Chart" );
cwoaPie
.setDimension( ChartDimension.TWO_DIMENSIONAL_WITH_DEPTH_LITERAL );

// Title
cwoaPie.getTitle( ).getLabel( ).getCaption( ).setValue(
"Sample Pie Chart" );
cwoaPie.getBlock( ).setBounds( BoundsImpl.create( 0, 0, 252, 288 ) );
cwoaPie.getBlock( ).getOutline( ).setVisible( true );

// Plot
cwoaPie.getPlot( ).getClientArea( ).getOutline( ).setVisible( false );
cwoaPie.getPlot( ).getClientArea( ).setBackground(
ColorDefinitionImpl.create( 255, 255, 225 ) );

// Legend
Legend lg = cwoaPie.getLegend( );
lg.getText( ).getFont( ).setSize( 16 );
lg.getInsets( ).set( 10, 5, 0, 0 );

lg.getOutline( ).setStyle( LineStyle.DASH_DOTTED_LITERAL );
lg.getOutline( ).setColor( ColorDefinitionImpl.create( 214, 100, 12 ) );
lg.getOutline( ).setVisible( true );

lg
.setBackground( GradientImpl.create( ColorDefinitionImpl
.create( 225, 225, 255 ), ColorDefinitionImpl.create(
255,
255,
225 ), -35, false ) );
lg.setAnchor( Anchor.EAST_LITERAL );
lg.setItemType( LegendItemType.CATEGORIES_LITERAL );

lg.getClientArea( ).setBackground( ColorDefinitionImpl.ORANGE( ) );
lg.setPosition( Position.LEFT_LITERAL );
//lg.setOrientation( Orientation.VERTICAL_LITERAL );

// Data Set
TextDataSet dsStringValue = TextDataSetImpl.create( new String[]{
"Keyboards", "Moritors", "Printers", "Mortherboards"} );
NumberDataSet dsNumericValues1 = NumberDataSetImpl
.create( new double[]{143.26, 156.55, 95.25, 47.56} );

// Series
Series seCategory = SeriesImpl.create( );
seCategory.setDataSet( dsStringValue );

SeriesDefinition series = SeriesDefinitionImpl.create( );

cwoaPie.getSeriesDefinitions( ).add( series );
series.getSeries( ).add( seCategory );

PieSeries ps = (PieSeries) PieSeriesImpl.create( );
ps.getLabel( ).getCaption( ).setColor( ColorDefinitionImpl.RED( ) );
ps.getLabel( ).setBackground( ColorDefinitionImpl.CYAN( ) );
ps.getLabel( ).setVisible( true );
ps.setSeriesIdentifier( "Actuate" );
ps.setDataSet( dsNumericValues1 );
ps.setLeaderLineAttributes( LineAttributesImpl.create(
ColorDefinitionImpl.create( 239, 33, 3 ),
LineStyle.DASH_DOTTED_LITERAL,
3 ) );
ps.setLeaderLineStyle( LeaderLineStyle.FIXED_LENGTH_LITERAL );
ps.setExplosion( 5 );
ps.setSliceOutline( ColorDefinitionImpl.BLACK( ) );
//ps.getTriggers( ).add(
// TriggerImpl.create(
// TriggerCondition.ONMOUSEOVER_LITERAL,
// ActionImpl.create(
// ActionType.SHOW_TOOLTIP_LITERAL,
// TooltipValueImpl.create( 500, null ) ) ) );

//sePie = (PieSeries) PieSeriesImpl.create();
ActionValue actionValue = TooltipValueImpl.create(0, null);
Action action = ActionImpl.create(ActionType.SHOW_TOOLTIP_LITERAL,
actionValue);
Trigger mouseOver =
TriggerImpl.create(TriggerCondition.ONMOUSEOVER_LITERAL,acti on);
ps.getTriggers().add(mouseOver);


SeriesDefinition seGroup1 = SeriesDefinitionImpl.create( );
series.getSeriesPalette( ).update( -2 );
series.getSeriesDefinitions( ).add( seGroup1 );
seGroup1.getSeries( ).add( ps );

return cwoaPie;

}
}

farideh wrote:
> Hi Jason,
>
> In this case I get no Error but wrong value is shown when I move the
> mouse over a slice.
> For example the pie chart contains 4 different slices:
>
> Label Value
> A 10
> B 30
> C 40
> D 20
>
> i add a trigger with the ONMOUSEOVER_LITERAL condition and a
> SHOW_TOOLTIP_LITERAL action type.
>
> Now if I position the mouse over first slice (Label A), the value 10
> shall be shown, but the value of the next neighbours slice is shown.
>
> I hope it is now clear what I exactly mine, if not I can send you a
> screenshot of my chart in which the problem can be easily seen.
>
> Farideh
>
>
Re: Trigger problem with BIRT 2.5.0 [message #480163 is a reply to message #480040] Fri, 14 August 2009 08:26 Go to previous messageGo to next message
farideh  is currently offline farideh Friend
Messages: 11
Registered: July 2009
Junior Member
I am using the BIRT Chart Engine 2.5 in an swt app.
IDeviceRenderer idr = ps.getDevice("dv.SWT");

but just disable the chart Explode in Your source code (ps.setExplosion( 0
);).
You can show the false value of the chart when the mouse move on the
slice-chart.
Re: Trigger problem with BIRT 2.5.0 [message #480170 is a reply to message #480163] Fri, 14 August 2009 09:12 Go to previous messageGo to next message
farideh  is currently offline farideh Friend
Messages: 11
Registered: July 2009
Junior Member
I am using the BIRT Chart Engine 2.5 in an swt app.
IDeviceRenderer idr = ps.getDevice("dv.SWT");

but just disable the chart Explode in Your source code (ps.setExplosion( 0
);).
You can show the false value of the chart when the mouse move on the
slice-chart.

However i have ascertained that you can reproduce the error if you have
device renderer "dv.SWT".

farideh
Re: Trigger problem with BIRT 2.5.0 [message #480255 is a reply to message #480170] Fri, 14 August 2009 14:58 Go to previous messageGo to next message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

Farideh,

I did both and could not reproduce the issue. What libs are you using
to build. Take a look at the attached modified example.

Jason

/*********************************************************** ************
* Copyright (c) 2004, 2007 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 my.swt.live.viewer;

import org.eclipse.birt.chart.device.ICallBackNotifier;
import org.eclipse.birt.chart.device.IDeviceRenderer;
import org.eclipse.birt.chart.exception.ChartException;
import org.eclipse.birt.chart.factory.GeneratedChartState;
import org.eclipse.birt.chart.factory.Generator;
import org.eclipse.birt.chart.model.Chart;
import org.eclipse.birt.chart.model.attribute.ActionType;
import org.eclipse.birt.chart.model.attribute.ActionValue;
import org.eclipse.birt.chart.model.attribute.Anchor;
import org.eclipse.birt.chart.model.attribute.Bounds;
import org.eclipse.birt.chart.model.attribute.CallBackValue;
import org.eclipse.birt.chart.model.attribute.ChartDimension;
import org.eclipse.birt.chart.model.attribute.LeaderLineStyle;
import org.eclipse.birt.chart.model.attribute.LegendItemType;
import org.eclipse.birt.chart.model.attribute.LineStyle;
import org.eclipse.birt.chart.model.attribute.Position;
import org.eclipse.birt.chart.model.attribute.TriggerCondition;
import org.eclipse.birt.chart.model.attribute.impl.BoundsImpl;
import org.eclipse.birt.chart.model.attribute.impl.ColorDefinitionI mpl;
import org.eclipse.birt.chart.model.attribute.impl.GradientImpl;
import org.eclipse.birt.chart.model.attribute.impl.LineAttributesIm pl;
import org.eclipse.birt.chart.model.attribute.impl.TooltipValueImpl ;
import org.eclipse.birt.chart.model.component.Series;
import org.eclipse.birt.chart.model.component.impl.SeriesImpl;
import org.eclipse.birt.chart.model.data.Action;
import org.eclipse.birt.chart.model.data.NumberDataSet;
import org.eclipse.birt.chart.model.data.SeriesDefinition;
import org.eclipse.birt.chart.model.data.TextDataSet;
import org.eclipse.birt.chart.model.data.Trigger;
import org.eclipse.birt.chart.model.data.impl.ActionImpl;
import org.eclipse.birt.chart.model.data.impl.NumberDataSetImpl;
import org.eclipse.birt.chart.model.data.impl.SeriesDefinitionImpl;
import org.eclipse.birt.chart.model.data.impl.TextDataSetImpl;
import org.eclipse.birt.chart.model.data.impl.TriggerImpl;
import org.eclipse.birt.chart.model.impl.ChartWithoutAxesImpl;
import org.eclipse.birt.chart.model.layout.Legend;
import org.eclipse.birt.chart.model.type.PieSeries;
import org.eclipse.birt.chart.model.type.impl.PieSeriesImpl;
import org.eclipse.birt.chart.util.PluginSettings;
import org.eclipse.birt.core.framework.PlatformConfig;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.PaintEvent;
import org.eclipse.swt.events.PaintListener;
import org.eclipse.swt.graphics.GC;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.graphics.Rectangle;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;

public class SwtChart extends Composite implements
PaintListener,
ICallBackNotifier
{
private boolean bNeedsGeneration = true;

private IDeviceRenderer idr = null;

private Chart cm = null;


private GeneratedChartState gcs = null;

public static SwtChart c3dViewer;

/**
* Used in building the chart for the first time
*/
private boolean bFirstPaint = true;
public Chart getDesignTimeModel( )
{
return cm;
}
public void regenerateChart( )
{
redraw( );
}
public Chart getRunTimeModel( )
{
return gcs.getChartModel( );
}

public void repaintChart( )
{
redraw( );
}

public Object peerInstance()
{
return this;
}
public void callback( Object event, Object source, CallBackValue value )
{
}

public static void main( String[] args )
{
Display display = Display.getDefault( );
Shell shell = new Shell( display );
shell.setSize( 600, 400 );
shell.setLayout( new GridLayout( ) );

c3dViewer = new SwtChart( shell, SWT.NO_BACKGROUND );
c3dViewer.setLayoutData( new GridData( GridData.FILL_BOTH ) );
c3dViewer.addPaintListener( c3dViewer );


shell.open( );
while ( !shell.isDisposed( ) )
{
if ( !display.readAndDispatch( ) )
display.sleep( );
}
display.dispose( );
}

/**
* Constructor
*/
SwtChart( Composite parent, int style )
{

super( parent, style );


PlatformConfig config = new PlatformConfig();
config.setProperty( "STANDALONE", "true" ); //$NON-NLS-1$//$NON-NLS-2$
final PluginSettings ps = PluginSettings.instance( config );
try
{
idr = ps.getDevice( "dv.SWT" );//$NON-NLS-1$
idr.setProperty( IDeviceRenderer.UPDATE_NOTIFIER, this );
}
catch ( ChartException ex )
{
ex.printStackTrace( );
}

cm = showTooltip_PieChart();



}
public static final Chart showTooltip_PieChart( )
{
ChartWithoutAxesImpl cwoaPie =
(ChartWithoutAxesImpl)ChartWithoutAxesImpl.create( );

// Chart Type
cwoaPie.setType( "Pie Chart" );
cwoaPie
.setDimension( ChartDimension.TWO_DIMENSIONAL_WITH_DEPTH_LITERAL );

// Title
cwoaPie.getTitle( ).getLabel( ).getCaption( ).setValue(
"Sample Pie Chart" );
cwoaPie.getBlock( ).setBounds( BoundsImpl.create( 0, 0, 252, 288 ) );
cwoaPie.getBlock( ).getOutline( ).setVisible( true );

// Plot
cwoaPie.getPlot( ).getClientArea( ).getOutline( ).setVisible( false );
cwoaPie.getPlot( ).getClientArea( ).setBackground(
ColorDefinitionImpl.create( 255, 255, 225 ) );

// Legend
Legend lg = cwoaPie.getLegend( );
lg.getText( ).getFont( ).setSize( 16 );
lg.getInsets( ).set( 10, 5, 0, 0 );

lg.getOutline( ).setStyle( LineStyle.DASH_DOTTED_LITERAL );
lg.getOutline( ).setColor( ColorDefinitionImpl.create( 214, 100, 12 ) );
lg.getOutline( ).setVisible( true );

lg
.setBackground( GradientImpl.create( ColorDefinitionImpl
.create( 225, 225, 255 ), ColorDefinitionImpl.create(
255,
255,
225 ), -35, false ) );
lg.setAnchor( Anchor.EAST_LITERAL );
lg.setItemType( LegendItemType.CATEGORIES_LITERAL );

lg.getClientArea( ).setBackground( ColorDefinitionImpl.ORANGE( ) );
lg.setPosition( Position.LEFT_LITERAL );
//lg.setOrientation( Orientation.VERTICAL_LITERAL );

// Data Set
TextDataSet dsStringValue = TextDataSetImpl.create( new String[]{
"Keyboards", "Moritors", "Printers", "Mortherboards"} );
NumberDataSet dsNumericValues1 = NumberDataSetImpl
.create( new double[]{143.26, 156.55, 95.25, 47.56} );

// Series
Series seCategory = SeriesImpl.create( );
seCategory.setDataSet( dsStringValue );

SeriesDefinition series = SeriesDefinitionImpl.create( );

cwoaPie.getSeriesDefinitions( ).add( series );
series.getSeries( ).add( seCategory );

PieSeries ps = (PieSeries) PieSeriesImpl.create( );
ps.getLabel( ).getCaption( ).setColor( ColorDefinitionImpl.RED( ) );
ps.getLabel( ).setBackground( ColorDefinitionImpl.CYAN( ) );
ps.getLabel( ).setVisible( true );
ps.setSeriesIdentifier( "Actuate" );
ps.setDataSet( dsNumericValues1 );
ps.setLeaderLineAttributes( LineAttributesImpl.create(
ColorDefinitionImpl.create( 239, 33, 3 ),
LineStyle.DASH_DOTTED_LITERAL,
3 ) );
ps.setLeaderLineStyle( LeaderLineStyle.FIXED_LENGTH_LITERAL );
ps.setExplosion( 0 );
ps.setSliceOutline( ColorDefinitionImpl.BLACK( ) );

ActionValue actionValue = TooltipValueImpl.create(0, null);
Action action = ActionImpl.create(ActionType.SHOW_TOOLTIP_LITERAL,
actionValue);
Trigger mouseOver =
TriggerImpl.create(TriggerCondition.ONMOUSEOVER_LITERAL,acti on);
ps.getTriggers().add(mouseOver);


SeriesDefinition seGroup1 = SeriesDefinitionImpl.create( );
series.getSeriesPalette( ).update( -2 );
series.getSeriesDefinitions( ).add( seGroup1 );
seGroup1.getSeries( ).add( ps );

return cwoaPie;

}
private static final String[] sa = {
"One", "Two", "Three", "Four",
"Five" ,//$NON-NLS-1$//$NON-NLS-2$//$NON-NLS-3$//$NON-NLS-4$//$NON- NLS-5$
"Six", "Seven", "Eight", "Nine",
"Ten" };//$NON-NLS-1$//$NON-NLS-2$//$NON-NLS-3$//$NON-NLS-4$//$NON -NLS-5$
private static final double[] da1 = {
56.99,
352.95,
-201.95,
299.95,
-95.95,
25.45,
129.33,
-26.5,
43.5,
122
};

private static final double[] da2 = {
20, 35, 59, 105, 150, -37, -65, -99, -145, -185
};

public final void paintControl( PaintEvent e )
{
Rectangle d = this.getClientArea( );
Image imgChart = new Image( this.getDisplay( ), d );
GC gcImage = new GC( imgChart );
//Look at IDeviceRenderer.java for all properties
//like DPI_RESOLUTION
//FILE_IDENTIFIER
//FORMAT_IDENTIFIER
//UPDATE_NOTIFIER
idr.setProperty( IDeviceRenderer.GRAPHICS_CONTEXT, gcImage );
//idr.setProperty(IDeviceRenderer.UPDATE_NOTIFIER, this);
Bounds bo = BoundsImpl.create( 0, 0, d.width, d.height );
bo.scale( 72d / idr.getDisplayServer( ).getDpiResolution( ) );

Generator gr = Generator.instance( );

if ( bNeedsGeneration )
{
bNeedsGeneration = false;

try
{
gcs = gr.build( idr.getDisplayServer( ),
cm,
bo,
null,
null,
null );
}
catch ( ChartException ce )
{
ce.printStackTrace( );
}


}
try
{
gr.render( idr, gcs );
GC gc = e.gc;
gc.drawImage( imgChart, d.x, d.y );
}
catch ( ChartException ex )
{
ex.printStackTrace( );
}



}



}



farideh wrote:
>
> I am using the BIRT Chart Engine 2.5 in an swt app.
> IDeviceRenderer idr = ps.getDevice("dv.SWT");
>
> but just disable the chart Explode in Your source code (ps.setExplosion(
> 0 );). You can show the false value of the chart when the mouse move on
> the slice-chart.
> However i have ascertained that you can reproduce the error if you have
> device renderer "dv.SWT".
>
> farideh
>
Re: Trigger problem with BIRT 2.5.0 [message #480489 is a reply to message #480255] Mon, 17 August 2009 11:46 Go to previous messageGo to next message
farideh  is currently offline farideh Friend
Messages: 11
Registered: July 2009
Junior Member
Jason,

i did it and i still have the problem.

My configuration follows.

farideh


*** Date: Monday, August 17, 2009 1:21:08 PM Germany Time

*** Platform Details:

*** System properties:
MaxCubeColumnLevels=50
MaxCubeRowLevels=50
MaxDataSetRows=500
RUN_UNDER_ECLIPSE=false
awt.toolkit=sun.awt.windows.WToolkit
birt.designer=true
birt.viewer.root.path=/D:/AixBOMS/eclipse-3.5.0/eclipse/plug ins/org.eclipse.birt.report.viewer_2.5.0.v20090520/birt/
birt.viewer.working.path=D:\AixBOMS\svn\navigator\trunk-3.5\ .metadata\.plugins\org.eclipse.birt.report.viewer
eclipse.application=org.eclipse.ui.ide.workbench
eclipse.buildId=I20090611-1540
eclipse.commands=-os
win32
-ws
win32
-arch
x86
-showsplash
D:\AixBOMS\eclipse-3.5.0\eclipse\\plugins\org.eclipse.platfo rm_3.3.200.v200906111540\splash.bmp
-launcher
D:\AixBOMS\eclipse-3.5.0\eclipse\eclipse.exe
-name
Eclipse
--launcher.library
D:\AixBOMS\eclipse-3.5.0\eclipse\plugins/org.eclipse.equinox .launcher.win32.win32.x86_1.0.200.v20090519\eclipse_1206.dll
-startup
D:\AixBOMS\eclipse-3.5.0\eclipse\plugins/org.eclipse.equinox .launcher_1.0.200.v20090520.jar
-showlocation
-nl
en
-data
D:\AixBOMS\svn\navigator\trunk-3.5
-vm
D:\AixBOMS\SUN\jre1.5.0_14\bin\client\jvm.dll
eclipse.home.location=file:/D:/AixBOMS/eclipse-3.5.0/eclipse /
eclipse.launcher=D:\AixBOMS\eclipse-3.5.0\eclipse\eclipse.ex e
eclipse.p2.data.area=@config.dir/../p2/
eclipse.p2.profile=SDKProfile
eclipse.product=org.eclipse.sdk.ide
eclipse.startTime=1250493034743
eclipse.vm=D:\AixBOMS\SUN\jre1.5.0_14\bin\client\jvm.dll
eclipse.vmargs=-Xms40m
-Xmx768m
-XX:MaxPermSize=256m
-Djava.class.path=D:\AixBOMS\eclipse-3.5.0\eclipse\plugins/o rg.eclipse.equinox.launcher_1.0.200.v20090520.jar
file.encoding=Cp1252
file.encoding.pkg=sun.io
file.separator=\
http.nonProxyHosts=localhost| 127.0.0.1|vmaso072|aso239|<local>
http.proxyHost=fwcoco
http.proxyPort=8080
http.proxySet=true
https.nonProxyHosts=localhost| 127.0.0.1|vmaso072|aso239|<local>
https.proxyHost=fwcoco
https.proxyPort=8080
https.proxySet=true
java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
java.awt.printerjob=sun.awt.windows.WPrinterJob
java.class.path=D:\AixBOMS\eclipse-3.5.0\eclipse\plugins/org .eclipse.equinox.launcher_1.0.200.v20090520.jar
java.class.version=49.0
java.endorsed.dirs=D:\AixBOMS\SUN\jre1.5.0_14\lib\endorsed
java.ext.dirs=D:\AixBOMS\SUN\jre1.5.0_14\lib\ext
java.home=D:\AixBOMS\SUN\jre1.5.0_14
java.io.tmpdir=C:\DOKUME~1\Zahra\LOKALE~1\Temp\
java.library.path=D:\AixBOMS\eclipse-3.5.0\eclipse;.;C:\WIND OWS\system32;C:\WINDOWS;D:\oracle\product\10.2.0\db_1\bin;C: \WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Pro gramme\IDM
Computer Solutions\UltraEdit-32
java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
java.runtime.version=1.5.0_14-b03
java.specification.name=Java Platform API Specification
java.specification.vendor=Sun Microsystems Inc.
java.specification.version=1.5
java.vendor=Sun Microsystems Inc.
java.vendor.url=http://java.sun.com/
java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi
java.version=1.5.0_14
java.vm.info=mixed mode
java.vm.name=Java HotSpot(TM) Client VM
java.vm.specification.name=Java Virtual Machine Specification
java.vm.specification.vendor=Sun Microsystems Inc.
java.vm.specification.version=1.0
java.vm.vendor=Sun Microsystems Inc.
java.vm.version=1.5.0_14-b03
line.separator=

org.apache.commons.logging.Log=org.apache.commons.logging.im pl.NoOpLog
org.eclipse.birt.report.script.debug.launching.debuggerActiv e=false
org.eclipse.debug.ui.breakpoints.toggleFactoriesUsed=false
org.eclipse.equinox.launcher.splash.location=D:\AixBOMS\ecli pse-3.5.0\eclipse\\plugins\org.eclipse.platform_3.3.200.v200 906111540\splash.bmp
org.eclipse.equinox.simpleconfigurator.configUrl=file:org.ec lipse.equinox.simpleconfigurator/bundles.info
org.eclipse.update.reconcile=false
org.eclipse.update.resolution_url=
org.osgi.framework.executionenvironment=OSGi/Minimum-1.0,OSG i/Minimum-1.1,OSGi/Minimum-1.2,JRE-1.1,J2SE-1.2,J2SE-1.3,J2S E-1.4,J2SE-1.5
org.osgi.framework.language=en
org.osgi.framework.os.name=WindowsXP
org.osgi.framework.os.version=5.1.0
org.osgi.framework.processor=x86
org.osgi.framework.system.packages=javax.accessibility,javax .activity,javax.crypto,javax.crypto.interfaces,javax.crypto. spec,javax.imageio,javax.imageio.event,javax.imageio.metadat a,javax.imageio.plugins.bmp,javax.imageio.plugins.jpeg,javax .imageio.spi,javax.imageio.stream,javax.management,javax.man agement.loading,javax.management.modelmbean,javax.management .monitor,javax.management.openmbean,javax.management.relatio n,javax.management.remote,javax.management.remote.rmi,javax. management.timer,javax.naming,javax.naming.directory,javax.n aming.event,javax.naming.ldap,javax.naming.spi,javax.net,jav ax.net.ssl,javax.print,javax.print.attribute,javax.print.att ribute.standard,javax.print.event,javax.rmi,javax.rmi.CORBA, javax.rmi.ssl,javax.security.auth,javax.security.auth.callba ck,javax.security.auth.kerberos,javax.security.auth.login,ja vax.security.auth.spi,javax.security.auth.x500,javax.securit y.cert,javax.security.sasl,javax.sound.midi,javax.sound.midi .spi,javax.sound.sampled,javax.sound.sampled.spi,javax.sql,j avax.sql.rowset,javax.sql.rowset.serial,javax.sql.rowset.spi ,javax.swing,javax.swing.border,javax.swing.colorchooser,jav ax.swing.event,javax.swing.filechooser,javax.swing.plaf,java x.swing.plaf.basic,javax.swing.plaf.metal,javax.swing.plaf.m ulti,javax.swing.plaf.synth,javax.swing.table,javax.swing.te xt,javax.swing.text.html,javax.swing.text.html.parser,javax. swing.text.rtf,javax.swing.tree,javax.swing.undo,javax.trans action,javax.transaction.xa,javax.xml,javax.xml.datatype,jav ax.xml.namespace,javax.xml.parsers,javax.xml.transform,javax .xml.transform.dom,javax.xml.transform.sax,javax.xml.transfo rm.stream,javax.xml.validation,javax.xml.xpath,org.ietf.jgss ,org.omg.CORBA,org.omg.CORBA_2_3,org.omg.CORBA_2_3.portable, org.omg.CORBA.DynAnyPackage,org.omg.CORBA.ORBPackage,org.omg .CORBA.portable,org.omg.CORBA.TypeCodePackage,org.omg.CosNam ing,org.omg.CosNaming.NamingContextExtPackage,org.omg.CosNam ing.NamingContextPackage,org.omg.Dynamic,org.omg.DynamicAny, org.omg.DynamicAny.DynAnyFactoryPackage,org.omg.DynamicAny.D ynAnyPackage,org.omg.IOP,org.omg.IOP.CodecFactoryPackage,org .omg.IOP.CodecPackage,org.omg.Messaging,org.omg.PortableInte rceptor,org.omg.PortableInterceptor.ORBInitInfoPackage,org.o mg.PortableServer,org.omg.PortableServer.CurrentPackage,org. omg.PortableServer.POAManagerPackage,org.omg.PortableServer. POAPackage,org.omg.PortableServer.portable,org.omg.PortableS erver.ServantLocatorPackage,org.omg.SendingContext,org.omg.s tub.java.rmi,org.w3c.dom,org.w3c.dom.bootstrap,org.w3c.dom.c ss,org.w3c.dom.events,org.w3c.dom.html,org.w3c.dom.ls,org.w3 c.dom.ranges,org.w3c.dom.stylesheets,org.w3c.dom.traversal,o rg.w3c.dom.views
,org.xml.sax,org.xml.sax.ext,org.xml.sax.helpers
org.osgi.framework.vendor=Eclipse
org.osgi.framework.version=1.5.0
org.osgi.supports.framework.extension=true
org.osgi.supports.framework.fragment=true
org.osgi.supports.framework.requirebundle=true
os.arch=x86
os.name=Windows XP
os.version=5.1
osgi.arch=x86
osgi.bundles=reference:file:javax.transaction_1.1.1.v2009061 61300.jar,reference:file:org.eclipse.osgi.nl_de_3.5.0.v20090 620043401.jar,reference:file: org.eclipse.equinox.simpleconfigurator_1.0.100.v20090520-190 5.jar @1:start
osgi.bundles.defaultStartLevel=4
osgi.bundlestore=D:\AixBOMS\eclipse-3.5.0\eclipse\configurat ion\org.eclipse.osgi\bundles
osgi.configuration.area=file:/D:/AixBOMS/eclipse-3.5.0/eclip se/configuration/
osgi.framework=file:/d:/AixBOMS/eclipse-3.5.0/eclipse/plugin s/org.eclipse.osgi_3.5.0.v20090520.jar
osgi.framework.extensions=reference:file:javax.transaction_1 .1.1.v200906161300.jar,reference:file:org.eclipse.osgi.nl_de _3.5.0.v20090620043401.jar
osgi.framework.shape=jar
osgi.framework.version=3.5.0.v20090520
osgi.frameworkClassPath=.,
file:d:/AixBOMS/eclipse-3.5.0/eclipse/plugins/javax.transact ion_1.1.1.v200906161300.jar,
file:d:/AixBOMS/eclipse-3.5.0/eclipse/plugins/org.eclipse.os gi.nl_de_3.5.0.v20090620043401.jar
osgi.install.area=file:/D:/AixBOMS/eclipse-3.5.0/eclipse/
osgi.instance.area=file:/D:/AixBOMS/svn/navigator/trunk-3.5/
osgi.instance.area.default=file:/C:/Dokumente und
Einstellungen/Zahra/workspace/
osgi.logfile=D:\AixBOMS\svn\navigator\trunk-3.5\.metadata\.l og
osgi.manifest.cache=D:\AixBOMS\eclipse-3.5.0\eclipse\configu ration\org.eclipse.osgi\manifests
osgi.nl=en
osgi.nl.user=en
osgi.os=win32
osgi.splashLocation=D:\AixBOMS\eclipse-3.5.0\eclipse\\plugin s\org.eclipse.platform_3.3.200.v200906111540\splash.bmp
osgi.splashPath=platform:/base/plugins/org.eclipse.platform
osgi.syspath=d:\AixBOMS\eclipse-3.5.0\eclipse\plugins
osgi.tracefile=D:\AixBOMS\svn\navigator\trunk-3.5\.metadata\ trace.log
osgi.ws=win32
path.separator=;
sun.arch.data.model=32
sun.boot.class.path=D:\AixBOMS\SUN\jre1.5.0_14\lib\rt.jar;D: \AixBOMS\SUN\jre1.5.0_14\lib\i18n.jar;D:\AixBOMS\SUN\jre1.5. 0_14\lib\sunrsasign.jar;D:\AixBOMS\SUN\jre1.5.0_14\lib\jsse. jar;D:\AixBOMS\SUN\jre1.5.0_14\lib\jce.jar;D:\AixBOMS\SUN\jr e1.5.0_14\lib\charsets.jar;D:\AixBOMS\SUN\jre1.5.0_14\classe s
sun.boot.library.path=D:\AixBOMS\SUN\jre1.5.0_14\bin
sun.cpu.endian=little
sun.cpu.isalist=
sun.desktop=windows
sun.io.unicode.encoding=UnicodeLittle
sun.jnu.encoding=Cp1252
sun.management.compiler=HotSpot Client Compiler
sun.os.patch.level=Service Pack 3
user.country=DE
user.dir=D:\AixBOMS\eclipse-3.5.0\eclipse
user.home=C:\Dokumente und Einstellungen\Zahra
user.language=de
user.name=zahra
user.timezone=Europe/Berlin
user.variant=

*** Features:
ca.ecliptical.emf.xpath (2.0.1.20071218052038) "XPath Support for EMF"
ca.ecliptical.emf.xpath.source (2.0.1.20071218052038) "XPath Support for
EMF Source"
net.entropysoft.jmx.feature (2.0.14) "JmxEntropy"
net.sf.eclipsensis (0.9.7.2) "EclipseNSIS"
net.sf.eclipsensis.installoptions (0.9.7) "EclipseNSIS InstallOptions
Editor"
net.sf.eclipsensis.utilities (0.9.2.2) "EclipseNSIS Utilities"
org.eclipse.acceleo (0.8.0.v200906161003) "Acceleo Common Utility Classes"
org.eclipse.acceleo.doc (0.8.0.v200906161003) "Acceleo Documentation"
org.eclipse.acceleo.examples (0.8.0.v200906161003) "Acceleo Examples"
org.eclipse.acceleo.sdk (0.8.0.v200906161003) "Acceleo Common Utility
Classes"
org.eclipse.acceleo.source (0.8.0.v200906161003) "Acceleo Runtime Source"
org.eclipse.acceleo.ui.capabilities (0.8.0.v200906161003) "Acceleo UI
capability definitions"
org.eclipse.birt (2.5.0.v20090607-9ODS6GD7wmMtz-DbWuHKMt_6VlSF) "Business
Intelligence and Reporting Tools"
org.eclipse.birt.chart.cshelp (2.5.0.v20090402-34-7w311A1728) "BIRT Chart
Context-sensitive Help"
org.eclipse.birt.cshelp (2.5.0.v20090402-34-7w311A1728) "BIRT
Context-sensitive Help"
org.eclipse.birt.doc (2.5.0.v20090521-34-7w311A1726) "BIRT Documentation"
org.eclipse.birt.example (2.5.0.v20090611-7F7Y-DZRDEBDrGg) "BIRT Example"
org.eclipse.birt.report.designer.editor.xml.wtp
(2.5.0.v20090611-7m9a4FTy215N3qZ5UkRE) "BIRT Advanced XML Editor Plug-in"
org.eclipse.cdt.mylyn (5.1.0.200906161748) "Mylyn Bridge: C/C++
Development"
org.eclipse.cvs (1.1.100.v20090514-7E79FEc9BJ99r9YFR6JOEF) "Eclipse CVS
Client"
org.eclipse.datatools.common.doc.user
(1.7.0.v200906111100-26-311A16321A3557) "Data Tools Platform User
Documentation"
org.eclipse.datatools.connectivity.doc.user
(1.7.0.v200906111100-37D-7733L3D753L7BBF) "Data Tools Platform
Connectivity User Documentation"
org.eclipse.datatools.connectivity.feature
(1.7.0.v200906050400-7B7OAGEn1XeXjC4wj6KETrSOP8) "Data Tools Platform
Connectivity Plug-in"
org.eclipse.datatools.connectivity.oda.designer.feature
(1.7.0.v200906050400-7E7C6DZRDEBDsDSDijc) "DTP ODA Designer UI Framework
Plug-in"
org.eclipse.datatools.connectivity.oda.feature
(1.7.0.v200906050400-7H791CcNBC0BjDNBddV) "DTP Open Data Access"
org.eclipse.datatools.doc.user (1.7.0.v200906111100-47C-8w95ENAJ69EHJF7)
"Data Tool Platform User Documentation"
org.eclipse.datatools.enablement.apache.derby.feature
(1.7.0.v200906050400-7768bBmKDLfMjGqHEHL7PAB) "High-level Sybase
Enablement Plug-in"
org.eclipse.datatools.enablement.feature
(1.7.0.v200906050400-7J8i0BWwPJNaz-Fe15qs9q203H-b) "Eclipse Data Tools
Platform Enablement"
org.eclipse.datatools.enablement.hsqldb.feature
(1.7.0.v200906050400-67B0AqGBJVKbEmF3FJ7PAB) "Eclipse Data Tools Platform
Enablement"
org.eclipse.datatools.enablement.ibm.feature
(1.7.0.v200906050400-7F47HFC7sRTNSjRsTNRR) "Eclipse Data Tools Platform
Enablement"
org.eclipse.datatools.enablement.ingres.feature
(1.7.0.v200906050400-540AkF77g7VACAJJM) "Eclipse Data Tools Platform
Enablement"
org.eclipse.datatools.enablement.jdbc.feature
(1.7.0.v200906050400-4-29oB55W5N6A6O9A) "High-level Sybase Enablement
Plug-in"
org.eclipse.datatools.enablement.jdt.feature
(1.7.0.v200906050400-2-07w311A17131A11) "Data Tools Platform Connectivity
JDT Extension Plug-in"
org.eclipse.datatools.enablement.msft.feature
(1.7.0.v200906050400-542AkF77g7V7F7g77) "Eclipse Data Tools Platform
Enablement"
org.eclipse.datatools.enablement.mysql.feature
(1.7.0.v200906050400-546AkF77g7V7F7g77) "Eclipse Data Tools Platform
Enablement"
org.eclipse.datatools.enablement.oda.designer.feature
(1.7.0.v200906050400-33-8s733L3D6C47AG) "Eclipse Data Tools Platform XML
ODA Designer"
org.eclipse.datatools.enablement.oda.feature
(1.7.0.v200906050400-7A7T5DZRDEADiKjEbOs) "Eclipse Data Tools Platform XML
ODA Runtime Driver"
org.eclipse.datatools.enablement.oracle.feature
(1.7.0.v200906050400-548aAkF77g7V7F7g77) "Eclipse Data Tools Platform
Enablement"
org.eclipse.datatools.enablement.postgresql.feature
(1.7.0.v200906050400-542AkF77g7V7F7g77) "Eclipse Data Tools Platform
Enablement"
org.eclipse.datatools.enablement.sap.feature
(1.7.0.v200906050400-540AkF77g7V7F7g77) "Eclipse Data Tools Platform
Enablement"
org.eclipse.datatools.enablement.sdk.feature
(1.7.0.v200906050400-7I8r-FE9JfFkjWT8qt6UI5jX2laJ) "Eclipse Data Tools
Platform Enablement"
org.eclipse.datatools.enablement.sqlite.feature
(1.7.0.v200906050400-541AkF77g7V7F7g77) "Eclipse Data Tools Platform
Enablement"
org.eclipse.datatools.enablement.sybase.feature
(1.7.0.v200906050400-7E45F9NiNWvOOVpNfUR) "High-level Sybase Enablement
Plug-in"
org.eclipse.datatools.intro (1.7.0.v200906050400-26-7w311A17142212)
"Eclipse Data Tools Platform Intro Plug-in"
org.eclipse.datatools.modelbase.feature
(1.7.0.v200906050400-77-3CcNBC0BkBNNN_0) "Eclipse Data Tools Platform
SQLModel Plug-in"
org.eclipse.datatools.sdk.feature
(1.7.0.v200906050400-7O9H-FD0IVEH6AsdTaISiFGNkk6p) "DTP SDK Plug-in"
org.eclipse.datatools.sqldevtools.ddlgen.feature
(1.7.0.v200906050400-7A-0F7RZHIXI6HZXnHX) "Eclipse Data Tools Platform FE
UI Plug-in"
org.eclipse.datatools.sqldevtools.feature
(1.7.0.v200906050400-7N7q-FDr_gSWLQCJJODUlz-1btbZ) "Eclipse Data Tools
Platform SQL Tools Common UI Plug-in"
org.eclipse.datatools.sqldevtools.parsers.feature
(1.7.0.v200906050400-602BgJ99q9_9OGXFJ) "Eclipse Data Tools Platform SQL
Parser Plugin"
org.eclipse.datatools.sqltools.doc.user
(1.7.0.v200906111100-37D-7733L3D753L7BBF) "Data Tools Platform SQL Tools
User Documentation"
org.eclipse.dltk.core (1.0.0.v20090610-1638-7C--EAAoOQBPbbrBcPz0b)
"Eclipse Dynamic Languages Toolkit"
org.eclipse.dltk.core.source (1.0.0.v20090610-1638-7C--EAAoOQBPbbrBcPz0b)
"Dynamic Languages Toolkit Core Source"
org.eclipse.dltk.itcl (1.0.0.v20090613-1432-3--9oA55V5L9K28LC_) "iTcl
Extension Support for TCL language"
org.eclipse.dltk.itcl.source (1.0.0.v20090613-1432-3--9oA55V5L9K28LC_)
"Dynamic Languages Toolkit (DLTK) iTcl IDE Source"
org.eclipse.dltk.javascript.source
(1.0.0.v20090610-1638-7A--E9IgKLsLFbY9UAo0) "Dynamic Languages Toolkit
(DLTK) TCL IDE Source"
org.eclipse.dltk.mylyn (1.0.0.v20090610-1638-1--7w311_17261119) "Mylyn
DLTK Bridge"
org.eclipse.dltk.mylyn.source (1.0.0.v20090610-1638-1--7w311_17261119)
"Dynamic Languages Toolkit (DLTK) Mylyn Integration Source"
org.eclipse.dltk.python.source (1.0.0.v20090610-1638-6--BcMAB0AiHf4DeLQ)
"Dynamic Languages Toolkit (DLTK) TCL IDE Source"
org.eclipse.dltk.rse.source (1.0.0.v20090610-1638-2--8s733K3E5615C9C)
"Dynamic Languages Toolkit (DLTK) RSE Environment Source"
org.eclipse.dltk.ruby (1.0.0.v20090610-1638-7B--E_EkMO1NTYtAZCz-9) "Ruby
Development Tools"
org.eclipse.dltk.ruby.source (1.0.0.v20090610-1638-7B--E_EkMO1NTYtAZCz-9)
"Dynamic Languages Toolkit (DLTK) Ryby IDE Source"
org.eclipse.dltk.tcl (1.0.0.v20090610-1638-7D--EB7sQSMRjetCfT7W) "Tcl
Development Tools"
org.eclipse.dltk.tcl.source (1.0.0.v20090610-1638-7D--EB7sQSMRjetCfT7W)
"Dynamic Languages Toolkit (DLTK) TCL IDE Source"
org.eclipse.dltk.xotcl (1.0.0.v20090610-1638-4--_kE77g7TAS28NCF) "XOTcl
Extension Support for TCL language"
org.eclipse.dltk.xotcl.source (1.0.0.v20090610-1638-4--_kE77g7TAS28NCF)
"Dynamic Languages Toolkit (DLTK) XOTcl IDE Source"
org.eclipse.draw2d (3.5.0.v20090422-2346-44-7w311A163902622) "Graphical
Editing Framework Draw2d"
org.eclipse.ecf.core (3.0.0.v20090616-0832) "Eclipse Communication
Framework (ECF)"
org.eclipse.emf (2.5.0.v200906151043) "EMF - Eclipse Modeling Framework
Runtime and Tools"
org.eclipse.emf.cdo (2.0.0.v200906160459) "CDO Model Repository Client"
org.eclipse.emf.cdo.defs (2.0.0.v200906160459) "CDO Model Repository
Definitions "
org.eclipse.emf.cdo.doc (2.0.0.v200906160459) "CDO Model Repository
Documentation"
org.eclipse.emf.cdo.examples (2.0.0.v200906160459) "CDO Model Repository
Examples"
org.eclipse.emf.cdo.server (2.0.0.v200906160459) "CDO Model Repository
Server"
org.eclipse.emf.codegen (2.5.0.v200906151043) "EMF Code Generation"
org.eclipse.emf.codegen.ecore (2.5.0.v200906151043) "EMF Ecore Code
Generator"
org.eclipse.emf.codegen.ecore.ui (2.5.0.v200906151043) "EMF Ecore Code
Generator UI"
org.eclipse.emf.codegen.ui (2.4.0.v200906151043) "EMF Code Generation UI"
org.eclipse.emf.common (2.5.0.v200906151043) "EMF Common"
org.eclipse.emf.common.ui (2.5.0.v200906151043) "EMF Common UI"
org.eclipse.emf.compare (1.0.0.v200906160908) "EMF Compare core"
org.eclipse.emf.compare.doc (1.0.0.v200906160908) "EMF Compare
Documentation"
org.eclipse.emf.compare.sdk (1.0.0.v200906160908) "EMF Compare core"
org.eclipse.emf.compare.source (1.0.0.v200906160908) "EMF Compare Source"
org.eclipse.emf.converter (2.5.0.v200906151043) "EMF Model Converter"
org.eclipse.emf.databinding (1.1.0.v200906151043) "EMF Data Binding"
org.eclipse.emf.databinding.edit (1.1.0.v200906151043) "EMF Edit Data
Binding"
org.eclipse.emf.doc (2.5.0.v200906151043) "EMF Documentation"
org.eclipse.emf.ecore (2.5.0.v200906151043) "EMF Ecore"
org.eclipse.emf.ecore.edit (2.5.0.v200906151043) "EMF Ecore Edit"
org.eclipse.emf.ecore.editor (2.5.0.v200906151043) "EMF Sample Ecore
Editor"
org.eclipse.emf.ecoretools (0.9.0.v200906031210) "Ecore Tools (Incubation)"
org.eclipse.emf.ecoretools.doc (0.8.0.v200906031210) "Ecore Tools
Documentation (Incubation)"
org.eclipse.emf.ecoretools.source (0.9.0.v200906031210) "Ecore Tools
Source (Incubation)"
org.eclipse.emf.edit (2.5.0.v200906151043) "EMF Edit"
org.eclipse.emf.edit.ui (2.5.0.v200906151043) "EMF Edit UI"
org.eclipse.emf.index.source (0.7.0.v200906161042) "EMF Index Source
(Incubation)"
org.eclipse.emf.mapping (2.5.0.v200906151043) "EMF Mapping"
org.eclipse.emf.mapping.ecore (2.5.0.v200906151043) "EMF Ecore Mapping"
org.eclipse.emf.mapping.ecore.editor (2.5.0.v200906151043) "EMF Ecore
Mapping Editor"
org.eclipse.emf.mapping.ui (2.5.0.v200906151043) "EMF Mapping UI"
org.eclipse.emf.mint (0.8.0.v200906110922) "Mint Runtime (Incubation)"
org.eclipse.emf.mint.doc (0.8.0.v200906110922) "Mint Developer Guide
(Incubation)"
org.eclipse.emf.mwe.core (0.7.0.v200906160748) "MWE Core (Incubation)"
org.eclipse.emf.mwe.core.source (0.7.0.v200906160748) "MWE Core Source
(Incubation)"
org.eclipse.emf.mwe.doc (0.7.0.v200906160748) "MWE Documentation
(Incubation)"
org.eclipse.emf.mwe.examples (0.7.0.v200906160748) "MWE Examples
(Incubation)"
org.eclipse.emf.mwe.examples.source (0.7.0.v200906160748) "MWE Examples
Source (Incubation)"
org.eclipse.emf.mwe.ui (0.7.0.v200906160748) "MWE UI (Incubation)"
org.eclipse.emf.mwe.ui.source (0.7.0.v200906160748) "MWE Core UI Source
(Incubation)"
org.eclipse.emf.ocl (1.1.101.v200901271800-208_7w311A12382911) "Object
Constraint Language (OCL) 2.0 Compatibility API"
org.eclipse.emf.ocl.doc (1.2.1.v200901271800-208_7w311A17262341) "Object
Constraint Language (OCL) 2.0 Compatibility API Documentation"
org.eclipse.emf.query (1.2.100.v200901271643-218Z7w311A142A1142) "EMF
Model Query"
org.eclipse.emf.query.doc (1.2.100.v200901271543-33-8s733L357H5FB9) "EMF
Model Query Documentation"
org.eclipse.emf.query.ocl (1.2.100.v200901271643-21-7w311A142A1142) "EMF
Model Query OCL Integration"
org.eclipse.emf.teneo (1.1.0.v200906180911-786-DZRDEBDsL4EBKK) "EMF Teneo"
org.eclipse.emf.teneo.doc (1.1.0.v200906180911-20-7w311A17291A22) "EMF
Teneo Documentation"
org.eclipse.emf.teneo.eclipselink
(1.0.0.v200906180911-7A1-F7RZHIXI6ROIXQQ) "EMF Teneo EclipseLink Plug-in"
org.eclipse.emf.transaction (1.3.0.v200901271819-35-8s733L365B4D6D) "EMF
Model Transaction Core"
org.eclipse.emf.transaction.doc (1.3.0.v200901271819-348Z8s733L357H5J5L)
"EMF Model Transaction Documentation"
org.eclipse.emf.validation (1.3.0.v200902052232-478-9oB55W58BQ8QBB) "EMF
Validation Framework Core"
org.eclipse.emf.validation.doc (1.3.0.v200901271722-35-8s733L357H5H77)
"EMF Validation Framework Documentation"
org.eclipse.emf.validation.ocl (1.2.0.v200901271722-22-7w311A12382833)
"EMF Validation Framework OCL Integration"
org.eclipse.emf.workspace (1.3.0.v200901271819-35-8s733L366A4F6E) "EMF
Model Transaction Workbench Integration Core"
org.eclipse.emf.workspace.doc (1.3.0.v200901271819-22-7w311A1238292A) "EMF
Model Transaction Workbench Integration Documentation"
org.eclipse.gef (3.5.0.v20090422-2346-7779-8192B6696L3ABD43733) "Graphical
Editing Framework GEF"
org.eclipse.gmf (1.1.1.v20090114-0940-7d8B0FXwnKwGb15VuKFF0ELpPk0b)
"Graphical Modeling Framework"
org.eclipse.gmf.doc (1.2.1.v20090114-0940-3218s733L3A5C13J73) "Graphical
Modeling Framework Documentation"
org.eclipse.gmf.examples.pde (1.2.0.v20090114-0940-318Z8s733L3D4B14H53)
"Graphical Modeling Framework Examples"
org.eclipse.gmf.runtime.notation (1.1.1.v20090114-0940-33-8s733L3C5715J78)
"GMF Notation Model Support"
org.eclipse.gmf.sdk (2.2.0.v20090114-0940-7C7B3BLund3tnivqKNVdZqeqJTs5)
"Graphical Modeling Framework SDK"
org.eclipse.gmf.tooling (2.2.0.v20090317-0630-7c7GFBVFLWUko2mBGJQ9Bgq)
"Graphical Modeling Framework Tooling"
org.eclipse.help (1.1.0.v20090602-7e7eFAlFEx2XZoYqwI68e2F) "Help System
Base"
org.eclipse.jdt (3.5.0.v20090527-2000-7r88FEeFJePyvYeA33DjZ_c1) "Eclipse
Java Development Tools"
org.eclipse.jet (1.0.0.v200906120945-508ZAkF77g7VBF7g77) "Java Emitter
Templates (JET)"
org.eclipse.jet.doc (1.0.0.v200906120945-2--7w311A17231A11) "Java Emitter
Templates (JET) Documentation"
org.eclipse.jet.source (1.0.0.v200906120945) "Eclipse Model to Text - JET
SDK"
org.eclipse.m2m.atl (3.0.0.v200906160347) "ATL - ATLAS Transformation
Language"
org.eclipse.m2m.atl.doc (3.0.0.v200906160347) "ATL Documentation"
org.eclipse.m2m.atl.examples (3.0.0.v200906160347) "ATL Examples"
org.eclipse.m2m.atl.source (3.0.0.v200906160347) "ATL Source"
org.eclipse.m2m.qvt.oml (2.0.0.v20090316-1930-78--AkF77g7SCW3BeM7) "QVT
Operational Compiler and Interpreter"
org.eclipse.m2m.qvt.oml.common (2.0.0.v20090410-1820-79--AkF77g7SDX3BfM7)
"QVT Operational Common"
org.eclipse.m2m.qvt.oml.doc (2.0.0.v20090316-1930-3--7w311A172702611) "QVT
Operational Documentation"
org.eclipse.m2m.qvt.oml.editor (2.0.0.v20090316-1930-3--7w311A163702A51)
"QVT Operational Editor"
org.eclipse.m2m.qvt.oml.examples (2.0.0.v20090616-1500-3--7w311A171902941)
"QVT Operational Samples"
org.eclipse.m2m.qvt.oml.runtime (2.0.0.v20090410-1820-79--AkF77g7RCR3BeK7)
"QVT Operational Runtime"
org.eclipse.m2m.qvt.oml.sdk
(2.0.0.v20090316-1930-7N--CLrFgFfNpRJ4OVlVbmHcXLqT) "QVT Operational
Compiler and Interpreter"
org.eclipse.mylyn_feature (3.2.0.v20090617-0100-e3x) "Mylyn"
org.eclipse.mylyn.bugzilla_feature (3.2.0.v20090617-0100-e3x) "Mylyn"
org.eclipse.mylyn.context_feature (3.2.0.v20090617-0100-e3x) "Mylyn"
org.eclipse.mylyn.ide_feature (3.2.0.v20090617-0100-e3x) "Mylyn"
org.eclipse.mylyn.java_feature (3.2.0.v20090617-0100-e3x) "Mylyn"
org.eclipse.mylyn.pde_feature (3.2.0.v20090617-0100-e3x) "Mylyn"
org.eclipse.mylyn.team_feature (3.2.0.v20090617-0100-e3x) "Mylyn"
org.eclipse.mylyn.wikitext_feature (1.1.0.v20090617-0100-e3x) "Mylyn"
org.eclipse.net4j (2.0.0.v200906160348) "Net4j Signalling Platform Runtime"
org.eclipse.net4j.db (2.0.0.v200906160348) "Net4j DB Framework"
org.eclipse.net4j.defs (2.0.0.v200906160348) "Net4j Signalling Platform
Definitions"
org.eclipse.net4j.doc (2.0.0.v200906160348) "Net4j Signalling Platform
Documentation"
org.eclipse.net4j.examples (2.0.0.v200906160348) "Net4j Signalling
Platform Examples"
org.eclipse.net4j.ui (2.0.0.v200906160348) "Net4j Signalling Platform UI"
org.eclipse.ocl (1.3.0.v200901271800-46-9oB55V5I9P8M65) "Object Constraint
Language (OCL) 2.0 Parser/Interpreter"
org.eclipse.ocl.doc (1.3.0.v200901271800-35-8s733L3A6F5D63) "Object
Constraint Language (OCL) 2.0 Documentation"
org.eclipse.ocl.uml (2.0.0.v200901271800-3--7w311A16382511) "OCL 2.0
Binding for UML"
org.eclipse.pde (3.5.0.v20090123-7Z7_F8NFE-z0VXhWiu-8Qb95) "PDE"
org.eclipse.platform (3.5.0.v20090611a-9gEeG1HFtQcmRThO4O3aR_fqSMvJR2sJ)
"Eclipse Platform"
org.eclipse.rcp (3.5.0.v20090519-9SA0FwxFv6x089WEf-TWh11) "Eclipse RCP"
org.eclipse.rse (3.1.0.v200905272300-7L5A78wqaCHMdrOqK3DvjpYKCnp3) "Remote
System Explorer End-User Runtime"
org.eclipse.rse.core (3.1.0.v200905272300-7a7CEoFC7sRTNS_oZt3fk) "RSE Core"
org.eclipse.rse.dstore (3.1.0.v200905272300-7L6EoEVVFGMFvQtVaPU) "RSE
DStore Services"
org.eclipse.rse.ftp (3.0.100.v200905272300-780A79oB55W5KBQBD9D) "RSE FTP
Service"
org.eclipse.rse.local (2.1.100.v200905272300-7B4EoBgJ99r9YJhJO99) "RSE
Local Services"
org.eclipse.rse.ssh (3.0.0.v200905272300-7A2BgAkF77g7RFZFJ77) "RSE SSH
Services"
org.eclipse.rse.telnet (2.2.0.v200905272300-773-AkF77g7RFZFIBF) "RSE
Telnet Service"
org.eclipse.rse.terminals (1.0.0.v200905272300-77--9uC6FSANEbEMAF4522)
"RSE Terminals UI"
org.eclipse.rse.useractions (1.1.100.v200905272300-31A78s733L3D7H7933)
"Remote System Explorer User Actions"
org.eclipse.sdk
(3.5.0.v20090423-7Q7bA7DPQ1SM6OYQ7wKYJhI-z-xZJCmLTBRhtZ0o61b 1z) "Eclipse
Project SDK"
org.eclipse.team.svn (0.7.8.I20090506-1500) "Subversive SVN Team Provider
(Incubation)"
org.eclipse.team.svn.mylyn (0.7.8.I20090506-1500) "Subversive Integration
for the Mylyn Project (Incubation)"
org.eclipse.tm.terminal (3.0.0.v200905272300-4--7w311A16383411) "Target
Management Terminal Widget"
org.eclipse.uml2 (3.0.0.v200906011111) "UML2"
org.eclipse.uml2.diagram (0.9.0.v200906031456) "UML2 Diagramming Plug-in
(Incubation)"
org.eclipse.uml2.doc (3.0.0.v200905041045) "UML2 Documentation"
org.eclipse.uml2.examples (3.0.0.v200905041045) "UML2 Examples"
org.eclipse.uml2tools (0.9.0.v200906031456) "UML2 Tools Plug-in
(Incubation)"
org.eclipse.wst.xml_ui.feature
(3.1.0.v200905240756-7H6FMVDxtkM-5OgPGKK4xQocS5AL) "Eclipse XML Editors
and Tools"
org.eclipse.xpand (0.7.0.v200906160952) "Xpand core (Incubation)"
org.eclipse.xpand.doc (0.7.0.v200906160952) "M2T Xpand Documentation
(Incubation)"
org.eclipse.xpand.examples (0.7.0.v200906160952) "Xpand Examples
(Incubation)"
org.eclipse.xpand.source (0.7.0.v200906160952) "Xpand SDK (Incubation)"
org.eclipse.xpand.ui (0.7.0.v200906160952) "Xpand editor (Incubation)"
org.eclipse.xpand.ui.source (0.7.0.v200906160952) "Xpand UI Developer
Resources (Incubation)"
org.eclipse.xsd (2.5.0.v200906151043) "XSD Model"
org.eclipse.xsd.doc (2.5.0.v200906151043) "XSD Documentation"
org.eclipse.xsd.ecore.converter (2.5.0.v200906151043) "XSD Ecore Converter"
org.eclipse.xsd.edit (2.5.0.v200906151043) "XSD Edit"
org.eclipse.xsd.editor (2.5.0.v200906151043) "XSD Sample Editor"
org.eclipse.xsd.mapping (2.5.0.v200906151043) "XSD Mapping"
org.eclipse.xsd.mapping.editor (2.5.0.v200906151043) "XSD Mapping Editor"
org.eclipse.xtend (0.7.0.v200906160952) "Xtend core (Incubation)"
org.eclipse.xtend.source (0.7.0.v200906160952) "Xtend Source (Incubation)"
org.eclipse.xtend.typesystem.emf (0.7.0.v200906160952) "Xtend emf
typesystem (Incubation)"
org.eclipse.xtend.typesystem.uml2 (0.7.0.v200906160952) "Xtend UML2
typesystem (Incubation)"
org.eclipse.xtend.typesystem.uml2.source (0.7.0.v200906160952) "Xtend UML2
typesystem Source (Incubation)"
org.eclipse.xtend.typesystem.xsd (0.7.0.v200906160952) "Xtend XSD
typesystem (Incubation)"
org.eclipse.xtend.typesystem.xsd.source (0.7.0.v200906160952) "Xtend XSD
typesystem Source (Incubation)"
org.eclipse.xtend.ui (0.7.0.v200906160952) "Xtend UI (Incubation)"
org.eclipse.xtend.ui.source (0.7.0.v200906160952) "Xtend UI Developer
Resources (Incubation)"
org.eclipse.xtext.examples.source (0.7.0.v200906161042) "Xtext Examples
Source (Incubation)"
org.eclipse.xtext.runtime.source (0.7.0.v200906161042) "Xtext Runtime
Source (Incubation)"
org.eclipse.xtext.sdk (0.7.0.v200906161042) "Xtext (Incubation)"
org.eclipse.xtext.sdk.source (0.7.0.v200906161042) "Xtext SDK Source
(Incubation)"
org.eclipse.xtext.ui.source (0.7.0.v200906161042) "Xtext UI Source
(Incubation)"
org.polarion.eclipse.team.svn.connector (2.2.0.I20090505-1500) "Subversive
SVN Connectors"
org.polarion.eclipse.team.svn.connector.javahl16 (2.2.0.I20090505-1500)
"Subversive SVN 1.6 JavaHL Connector"
org.polarion.eclipse.team.svn.connector.javahl16.win32
(2.2.0.I20090505-1500) "JavaHL 1.6.0 Win32 Binaries"
org.polarion.eclipse.team.svn.connector.svnkit16 (2.2.0.I20090505-1500)
"Subversive SVN 1.6 SVN Kit Connector"

*** Plug-in Registry:
ca.ecliptical.emf.xpath (2.0.1.20071218052038) "XPath Support for EMF"
[Resolved]
ca.ecliptical.emf.xpath.source (2.0.1.20071218052038) "XPath Support for
EMF Source" [Resolved]
ca.ecliptical.emf.xpath.tests (2.0.1.20071218052038) "XPath Support for
EMF Tests" [Active]
ch.ethz.iks.r_osgi.remote (1.0.0.RC4_v20090616-0832) "R_OSGi Remote
Service" [Active]
ch.ethz.iks.slp (1.1.0.v20090616-0832) "jslp-osgi" [Active]
com.caucho.hessian (3.1.3) "Caucho Hessian Plug-in" [Resolved]
com.google.collect (0.8.0.v200906161042) "bundleName" [Resolved]
com.google.guice (1.0.1.v200906161042) "Guice Plug-in" [Resolved]
com.ibm.icu (4.0.1.v20090415) "International Components for Unicode for
Java (ICU4J)" [Active]
com.jcraft.jsch (0.1.41.v200903070017) "JSch" [Resolved]
com.lowagie.itext (1.5.4.v20090608) "Lowagie Itext" [Resolved]
com.lowagie.itext.nl_de (3.5.0.v20090620043401) "com.lowagie.itext German
NLS Support" [Resolved]
de.kupzog.ktable (2.1.3) "KTable Plug-in" [Resolved]
javax.activation (1.1.0.v200905021805) "Apache Geronimo Activation
Plug-in" [Resolved]
javax.activation.nl_de (3.5.0.v20090620043401) "javax.activation German
NLS Support" [Resolved]
javax.mail (1.4.0.v200905040518) "Javax Mail Plug-in" [Resolved]
javax.mail.nl_de (3.5.0.v20090620043401) "javax.mail German NLS Support"
[Resolved]
javax.persistence (1.99.0.v200906021518) "JPA 1.0 - Extended for OSGi
(1.99)" [Resolved]
javax.persistence.nl_de (3.5.0.v20090620043401) "javax.persistence German
NLS Support" [Resolved]
javax.servlet (2.5.0.v200806031605) "Servlet API Bundle" [Resolved]
javax.servlet.jsp (2.0.0.v200806031607) "Java Server Pages API Bundle"
[Resolved]
javax.servlet.jsp.nl_de (3.5.0.v20090620043401) "javax.servlet.jsp German
NLS Support" [Resolved]
javax.servlet.nl_de (3.5.0.v20090620043401) "javax.servlet German NLS
Support" [Resolved]
javax.transaction (1.1.1.v200906161300) "jta 1.1 spec" [Resolved]
javax.wsdl (1.5.1.v200806030408) "WSDL4J" [Resolved]
javax.wsdl.nl_de (3.5.0.v20090620043401) "javax.wsdl German NLS Support"
[Resolved]
javax.xml (1.3.4.v200902170245) "JAXP XML" [Resolved]
javax.xml.nl_de (3.5.0.v20090620043401) "javax.xml German NLS Support"
[Resolved]
javax.xml.rpc (1.1.0.v200905122109) "JAX-RPC" [Resolved]
javax.xml.rpc.nl_de (3.5.0.v20090620043401) "javax.xml.rpc German NLS
Support" [Resolved]
javax.xml.soap (1.2.0.v200905122109) "SAAJ" [Resolved]
javax.xml.soap.nl_de (3.5.0.v20090620043401) "javax.xml.soap German NLS
Support" [Resolved]
net.entropysoft.dashboard.plugin (2.0.14) "dashboard plugin" [Starting]
net.entropysoft.jmx.plugin (2.0.14) "JmxEntropy" [Starting]
net.sf.eclipsensis (0.9.7.2) "EclipseNSIS" [Active]
net.sf.eclipsensis.installoptions (0.9.7) "EclipseNSIS InstallOptions
Editor" [Active]
net.sf.eclipsensis.startup (0.9.7) "EclipseNSIS Startup" [Active]
net.sf.eclipsensis.update (0.9.7) "EclipseNSIS Update" [Active]
net.sf.eclipsensis.utilities (0.9.2.2) "EclipseNSIS Utilities" [Starting]
net.sf.jarsigner (0.9.2.2) "JARSigner Plug-in" [Starting]
net.sf.jnigen (0.9.2.2) "JNIGen Plug-in" [Starting]
net.sourceforge.lpg.lpgjavaruntime (1.1.0.v200803061910) "SourceForge LPG"
[Resolved]
net.sourceforge.lpg.lpgjavaruntime.nl_de (3.5.0.v20090620043401)
"net.sourceforge.lpg.lpgjavaruntime German NLS Support" [Resolved]
org.antlr.runtime (3.0.0.v200803061811) "ANTLR Runtime" [Resolved]
org.antlr.runtime.nl_de (3.5.0.v20090620043401) "org.antlr.runtime German
NLS Support" [Resolved]
org.apache.ant (1.7.1.v20090120-1145) "Apache Ant" [Resolved]
org.apache.axis (1.4.0.v200905122109) "Apache Web Services" [Resolved]
org.apache.axis.nl_de (3.5.0.v20090620043401) "org.apache.axis German NLS
Support" [Resolved]
org.apache.batik.bridge (1.6.0.v200805290154) "Apache Batik
Bridge/GVT/Scripting" [Resolved]
org.apache.batik.bridge.nl_de (3.5.0.v20090620043401)
"org.apache.batik.bridge German NLS Support" [Resolved]
org.apache.batik.css (1.6.0.v200805290154) "Apache Batik CSS" [Resolved]
org.apache.batik.css.nl_de (3.5.0.v20090620043401) "org.apache.batik.css
German NLS Support" [Resolved]
org.apache.batik.dom (1.6.0.v200805290154) "Apache Batik DOM" [Resolved]
org.apache.batik.dom.nl_de (3.5.0.v20090620043401) "org.apache.batik.dom
German NLS Support" [Resolved]
org.apache.batik.dom.svg (1.6.0.v200805290154) "Apache Batik SVG DOM"
[Resolved]
org.apache.batik.dom.svg.nl_de (3.5.0.v20090620043401)
"org.apache.batik.dom.svg German NLS Support" [Resolved]
org.apache.batik.ext.awt (1.6.0.v200805290154) "Apache Batik AWT
Utilities" [Resolved]
org.apache.batik.ext.awt.nl_de (3.5.0.v20090620043401)
"org.apache.batik.ext.awt German NLS Support" [Resolved]
org.apache.batik.extension (1.6.0.v200805290154) "Apache Batik Extension"
[Resolved]
org.apache.batik.extension.nl_de (3.5.0.v20090620043401)
"org.apache.batik.extension German NLS Support" [Resolved]
org.apache.batik.parser (1.6.0.v200805290154) "Apache Batik Parser"
[Resolved]
org.apache.batik.parser.nl_de (3.5.0.v20090620043401)
"org.apache.batik.parser German NLS Support" [Resolved]
org.apache.batik.pdf (1.6.0.v200806031500) "Apache Batik PDF" [Resolved]
org.apache.batik.pdf.nl_de (3.5.0.v20090620043401) "org.apache.batik.pdf
German NLS Support" [Resolved]
org.apache.batik.svggen (1.6.0.v200805290154) "Apache Batik SVG
Generation" [Resolved]
org.apache.batik.svggen.nl_de (3.5.0.v20090620043401)
"org.apache.batik.svggen German NLS Support" [Resolved]
org.apache.batik.swing (1.6.0.v200805290154) "Apache Batik Swing"
[Resolved]
org.apache.batik.swing.nl_de (3.5.0.v20090620043401)
"org.apache.batik.swing German NLS Support" [Resolved]
org.apache.batik.transcoder (1.6.0.v200805290154) "Apache Batik
Transcoder" [Resolved]
org.apache.batik.transcoder.nl_de (3.5.0.v20090620043401)
"org.apache.batik.transcoder German NLS Support" [Resolved]
org.apache.batik.util (1.6.0.v200805290154) "Apache Batik Utilities"
[Resolved]
org.apache.batik.util.gui (1.6.0.v200805290154) "Apache Batik GUI
Utilities" [Resolved]
org.apache.batik.util.gui.nl_de (3.5.0.v20090620043401)
"org.apache.batik.util.gui German NLS Support" [Resolved]
org.apache.batik.util.nl_de (3.5.0.v20090620043401) "org.apache.batik.util
German NLS Support" [Resolved]
org.apache.batik.xml (1.6.0.v200805290154) "Apache Batik XML" [Resolved]
org.apache.batik.xml.nl_de (3.5.0.v20090620043401) "org.apache.batik.xml
German NLS Support" [Resolved]
org.apache.commons.beanutils (1.7.0.v200902170505) "Apache Commons
BeanUtils" [Resolved]
org.apache.commons.beanutils.nl_de (3.5.0.v20090620043401)
"org.apache.commons.beanutils German NLS Support" [Resolved]
org.apache.commons.cli (1.0.0.v20080604-1500) "pluginName" [Resolved]
org.apache.commons.codec (1.3.0.v20080530-1600) "Apache Commons Codec
Plug-in" [Resolved]
org.apache.commons.collections (3.2.0.v200803061811) "Apache Commons
Collections" [Resolved]
org.apache.commons.collections.nl_de (3.5.0.v20090620043401)
"org.apache.commons.collections German NLS Support" [Resolved]
org.apache.commons.discovery (0.2.0.v200905122109) "Jakarta-Commons
Discovery" [Resolved]
org.apache.commons.discovery.nl_de (3.5.0.v20090620043401)
"org.apache.commons.discovery German NLS Support" [Resolved]
org.apache.commons.el (1.0.0.v200806031608) "Apache Commons JSP 2.0
Expression Language Interpreter" [Resolved]
org.apache.commons.el.nl_de (3.5.0.v20090620043401) "org.apache.commons.el
German NLS Support" [Resolved]
org.apache.commons.httpclient (3.1.0.v20080605-1935) "Apache Commons
Httpclient" [Resolved]
org.apache.commons.lang (2.3.0.v200803061910) "Apache Jakarta Commons
Lang" [Resolved]
org.apache.commons.lang (2.4.0.v20081016-1030) "Apache Jakarta Commons
Lang" [Resolved]
org.apache.commons.lang.nl_de (3.5.0.v20090620043401)
"org.apache.commons.lang German NLS Support" [Resolved]
org.apache.commons.logging (1.0.4.v200904062259) "Apache Commons Logging
Plug-in" [Resolved]
org.apache.commons.logging.nl_de (3.5.0.v20090620043401)
"org.apache.commons.logging German NLS Support" [Resolved]
org.apache.commons.net (2.0.0.v200905272248) "Apache Commons Net"
[Resolved]
org.apache.commons.net.nl_de (3.5.0.v20090620043401)
"org.apache.commons.net German NLS Support" [Resolved]
org.apache.derby (10.1.2.1_v200803061811) "Apache Derby Plug-in" [Resolved]
org.apache.derby.core (10.3.1.4) "Apache Derby Core Plug-in for Eclipse"
[Starting]
org.apache.derby.core.nl_de (3.5.0.v20090620043401) "org.apache.derby.core
German NLS Support" [Resolved]
org.apache.derby.nl_de (3.5.0.v20090620043401) "org.apache.derby German
NLS Support" [Resolved]
org.apache.jasper (5.5.17.v200903231320) "Apache Jasper 2 Plug-in"
[Resolved]
org.apache.jasper.nl_de (3.5.0.v20090620043401) "org.apache.jasper German
NLS Support" [Resolved]
org.apache.log4j (1.2.13.v200903072027) "Apache Jakarta log4j Plug-in"
[Resolved]
org.apache.log4j.nl_de (3.5.0.v20090620043401) "org.apache.log4j German
NLS Support" [Resolved]
org.apache.lucene (1.9.1.v20080530-1600) "Apache Lucene" [Resolved]
org.apache.lucene.analysis (1.9.1.v20080530-1600) "Apache Lucene Analysis"
[Resolved]
org.apache.xerces (2.9.0.v200909240008) "Apache Xerces-J" [Resolved]
org.apache.xerces.nl_de (3.5.0.v20090620043401) "org.apache.xerces German
NLS Support" [Resolved]
org.apache.xml.resolver (1.2.0.v200902170519) "Apache XmlResolver"
[Resolved]
org.apache.xml.resolver.nl_de (3.5.0.v20090620043401)
"org.apache.xml.resolver German NLS Support" [Resolved]
org.apache.xml.serializer (2.7.1.v200902170519) "Apache XML Commons
Serializer" [Resolved]
org.apache.xml.serializer.nl_de (3.5.0.v20090620043401)
"org.apache.xml.serializer German NLS Support" [Resolved]
org.codehaus.groovy (1.6.1.200905091951) "Groovy Runtime Plug-in" [Active]
org.codehaus.groovy.eclipse (1.6.1.200905091951) "Groovy Core" [Active]
org.codehaus.groovy.eclipse.astviews (1.6.1.200905091951) "Groovy AST
Views" [Starting]
org.codehaus.groovy.eclipse.codeassist (1.6.1.200905091951) "Code Assist
Core" [Starting]
org.codehaus.groovy.eclipse.codeassist.completion (1.6.1.200905091951)
"Code Completion Plug-in" [Starting]
org.codehaus.groovy.eclipse.codebrowsing (1.6.1.200905091951) "Groovy Code
Browsing" [Starting]
org.codehaus.groovy.eclipse.collections (1.6.1.200905091951) "Collections
Plug-in" [Resolved]
org.codehaus.groovy.eclipse.core.help (1.6.1.200905091951) "GroovyEclipse
Core Help" [Resolved]
org.codehaus.groovy.eclipse.cstviewer (1.6.1.200905091951) "Groovy CST
Viewer" [Starting]
org.codehaus.groovy.eclipse.junit (1.6.1.200905091951) "Java Development
Tools JUnit support" [Starting]
org.codehaus.groovy.eclipse.refactoring (1.6.1.200905091951) "Refactoring
Plug-in" [Starting]
org.codehaus.groovy.eclipse.ui (1.6.1.200905091951) "Groovy UI" [Active]
org.easymock (2.4.0.v20090202-0900) "EasyMock" [Resolved]
org.eclipse.acceleo.common (0.8.0.v200906161003) "Acceleo Common Utility
Classes" [Starting]
org.eclipse.acceleo.common.nl_de (3.5.0.v20090620043401)
"org.eclipse.acceleo.common German NLS Support" [Resolved]
org.eclipse.acceleo.doc (0.8.0.v200906161003) "Acceleo Documentation"
[Starting]
org.eclipse.acceleo.engine (0.8.0.v200906161003) "Acceleo evaluation
engine" [Starting]
org.eclipse.acceleo.engine.nl_de (3.5.0.v20090620043401)
"org.eclipse.acceleo.engine German NLS Support" [Resolved]
org.eclipse.acceleo.examples (0.8.0.v200906161003) "Acceleo Examples"
[Starting]
org.eclipse.acceleo.ide.ui (0.8.0.v200906161003) "Acceleo Eclipse User
Interface" [Active]
org.eclipse.acceleo.ide.ui.nl_de (3.5.0.v20090620043401)
"org.eclipse.acceleo.ide.ui German NLS Support" [Resolved]
org.eclipse.acceleo.model (0.8.0.v200906161003) "Acceleo Model" [Active]
org.eclipse.acceleo.model.nl_de (3.5.0.v20090620043401)
"org.eclipse.acceleo.model German NLS Support" [Resolved]
org.eclipse.acceleo.parser (0.8.0.v200906161003) "Acceleo Parser" [Active]
org.eclipse.acceleo.parser.nl_de (3.5.0.v20090620043401)
"org.eclipse.acceleo.parser German NLS Support" [Resolved]
org.eclipse.acceleo.source (0.8.0.v200906161003) "Acceleo Runtime Source"
[Resolved]
org.eclipse.acceleo.ui.capabilities (0.8.0.v200906161003) "Acceleo UI
capability definitions" [Resolved]
org.eclipse.ant.core (3.2.100.v20090520) "Ant Build Tool Core" [Starting]
org.eclipse.ant.core.nl_de (3.5.0.v20090620043401) "org.eclipse.ant.core
German NLS Support" [Resolved]
org.eclipse.ant.ui (3.4.0.v20090520) "Ant UI" [Starting]
org.eclipse.ant.ui.nl_de (3.5.0.v20090620043401) "org.eclipse.ant.ui
German NLS Support" [Resolved]
org.eclipse.birt (2.5.0.v20090615) "Business Intelligence and Reporting
Tools" [Resolved]
org.eclipse.birt.chart.cshelp (2.5.0.v20090617) "BIRT Chart
Context-sensitive Help" [Starting]
org.eclipse.birt.chart.cshelp.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.chart.cshelp German NLS Support" [Resolved]
org.eclipse.birt.chart.device.extension (2.5.0.v20090514) "BIRT Chart
Device Extension(s)" [Starting]
org.eclipse.birt.chart.device.extension.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.chart.device.extension German NLS Support" [Resolved]
org.eclipse.birt.chart.device.pdf (2.5.0.v20090326) "BIRT Chart Device PDF
Extension" [Starting]
org.eclipse.birt.chart.device.svg (2.5.0.v20090423) "BIRT Chart Device SVG
Extension" [Starting]
org.eclipse.birt.chart.device.svg.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.chart.device.svg German NLS Support" [Resolved]
org.eclipse.birt.chart.device.swt (2.5.0.v20090514) "BIRT Chart Device SWT
Extension" [Active]
org.eclipse.birt.chart.device.swt.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.chart.device.swt German NLS Support" [Resolved]
org.eclipse.birt.chart.engine (2.5.0.v20090604) "BIRT Chart Engine"
[Active]
org.eclipse.birt.chart.engine.extension (2.5.0.v20090527) "BIRT Chart
Engine Extension" [Active]
org.eclipse.birt.chart.engine.extension.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.chart.engine.extension German NLS Support" [Resolved]
org.eclipse.birt.chart.engine.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.chart.engine German NLS Support" [Resolved]
org.eclipse.birt.chart.examples (2.5.0.v20090514) "BIRT Chart Examples
Plug-in" [Starting]
org.eclipse.birt.chart.examples.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.chart.examples German NLS Support" [Resolved]
org.eclipse.birt.chart.reportitem (2.5.0.v20090514) "BIRT Chart-Report
Integration" [Active]
org.eclipse.birt.chart.reportitem.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.chart.reportitem German NLS Support" [Resolved]
org.eclipse.birt.chart.reportitem.ui (2.5.0.v20090531) "BIRT Chart-Report
UI Integration Plug-in" [Active]
org.eclipse.birt.chart.reportitem.ui.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.chart.reportitem.ui German NLS Support" [Resolved]
org.eclipse.birt.chart.ui (2.5.0.v20090604) "BIRT Chart Library UI
Plug-in" [Active]
org.eclipse.birt.chart.ui.extension (2.5.0.v20090604) "BIRT Chart UI
Extension" [Active]
org.eclipse.birt.chart.ui.extension.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.chart.ui.extension German NLS Support" [Resolved]
org.eclipse.birt.chart.ui.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.chart.ui German NLS Support" [Resolved]
org.eclipse.birt.core (2.5.0.v20090601) "BIRT Core Package" [Active]
org.eclipse.birt.core.nl_de (3.5.0.v20090620043401) "org.eclipse.birt.core
German NLS Support" [Resolved]
org.eclipse.birt.core.script.function (2.5.0.v20090611) "Function Plug-in"
[Active]
org.eclipse.birt.core.script.function.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.core.script.function German NLS Support" [Resolved]
org.eclipse.birt.core.ui (2.5.0.v20090326) "BIRT Core UI" [Active]
org.eclipse.birt.core.ui.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.core.ui German NLS Support" [Resolved]
org.eclipse.birt.cshelp (2.5.0.v20090617) "BIRT Context-sensitive Help"
[Starting]
org.eclipse.birt.cshelp.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.cshelp German NLS Support" [Resolved]
org.eclipse.birt.data (2.5.0.v20090605) "BIRT Data Engine" [Active]
org.eclipse.birt.data.aggregation (2.5.0.v20090605) "Build-in Aggregation
Plug-in" [Starting]
org.eclipse.birt.data.aggregation.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.data.aggregation German NLS Support" [Resolved]
org.eclipse.birt.data.nl_de (3.5.0.v20090620043401) "org.eclipse.birt.data
German NLS Support" [Resolved]
org.eclipse.birt.doc (2.5.0.v20090615) "BIRT Documentation" [Starting]
org.eclipse.birt.doc.nl_de (3.5.0.v20090620043401) "org.eclipse.birt.doc
German NLS Support" [Resolved]
org.eclipse.birt.example (2.5.0.v20090615) "BIRT Example" [Resolved]
org.eclipse.birt.example.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.example German NLS Support" [Resolved]
org.eclipse.birt.nl_de (3.5.0.v20090620043401) "org.eclipse.birt German
NLS Support" [Resolved]
org.eclipse.birt.report.data.adapter (2.5.0.v20090605) "BIRT Data Adapter"
[Active]
org.eclipse.birt.report.data.adapter.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.report.data.adapter German NLS Support" [Resolved]
org.eclipse.birt.report.data.oda.jdbc (2.5.0.v20090605) "BIRT ODA-JDBC
Bridge Driver" [Starting]
org.eclipse.birt.report.data.oda.jdbc.dbprofile (2.5.0.v20090605) "JDBC
Databases Profile Data Source ODA Runtime Driver" [Starting]
org.eclipse.birt.report.data.oda.jdbc.dbprofile.nl_de
(3.5.0.v20090620043401) "org.eclipse.birt.report.data.oda.jdbc.dbprofile
German NLS Support" [Resolved]
org.eclipse.birt.report.data.oda.jdbc.dbprofile.sampledb (2.5.0.v20090605)
"BIRT Sample Database Connection Profile Plug-in" [Starting]
org.eclipse.birt.report.data.oda.jdbc.dbprofile.sampledb.nl_ de
(3.5.0.v20090620043401)
"org.eclipse.birt.report.data.oda.jdbc.dbprofile.sampledb German NLS
Support" [Resolved]
org.eclipse.birt.report.data.oda.jdbc.dbprofile.ui (2.5.0.v20090605) "JDBC
Databases Profile Data Source ODA Designer" [Starting]
org.eclipse.birt.report.data.oda.jdbc.dbprofile.ui.nl_de
(3.5.0.v20090620043401)
"org.eclipse.birt.report.data.oda.jdbc.dbprofile.ui German NLS Support"
[Resolved]
org.eclipse.birt.report.data.oda.jdbc.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.report.data.oda.jdbc German NLS Support" [Resolved]
org.eclipse.birt.report.data.oda.jdbc.ui (2.5.0.v20090605) "BIRT JDBC UI
Plug-in" [Starting]
org.eclipse.birt.report.data.oda.jdbc.ui.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.report.data.oda.jdbc.ui German NLS Support" [Resolved]
org.eclipse.birt.report.data.oda.sampledb (2.5.0.v20090605) "BIRT Sample
Database" [Starting]
org.eclipse.birt.report.data.oda.sampledb.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.report.data.oda.sampledb German NLS Support" [Resolved]
org.eclipse.birt.report.data.oda.sampledb.ui (2.5.0.v20090605) "BIRT
Sample Database UI Plug-in" [Starting]
org.eclipse.birt.report.data.oda.sampledb.ui.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.report.data.oda.sampledb.ui German NLS Support"
[Resolved]
org.eclipse.birt.report.data.oda.xml (2.5.0.v20090605) "BIRT ODA-XML
Driver" [Starting]
org.eclipse.birt.report.data.oda.xml.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.report.data.oda.xml German NLS Support" [Resolved]
org.eclipse.birt.report.data.oda.xml.ui (2.5.0.v20090615) "BIRT ODA XML
Designer" [Starting]
org.eclipse.birt.report.data.oda.xml.ui.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.report.data.oda.xml.ui German NLS Support" [Resolved]
org.eclipse.birt.report.debug.core (2.5.0.v20090603) "BIRT Debug Core
Plug-in" [Resolved]
org.eclipse.birt.report.debug.core.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.report.debug.core German NLS Support" [Resolved]
org.eclipse.birt.report.debug.ui (2.5.0.v20090603) "BIRT Debug UI Plug-in"
[Active]
org.eclipse.birt.report.debug.ui.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.report.debug.ui German NLS Support" [Resolved]
org.eclipse.birt.report.designer.core (2.5.0.v20090603) "BIRT Designer
Core" [Active]
org.eclipse.birt.report.designer.core.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.report.designer.core German NLS Support" [Resolved]
org.eclipse.birt.report.designer.samplereports (2.5.0.v20090615) "BIRT
Samplereports Plug-in" [Starting]
org.eclipse.birt.report.designer.ui (2.5.0.v20090603) "BIRT Designer UI"
[Active]
org.eclipse.birt.report.designer.ui.cubebuilder (2.5.0.v20090603) "BIRT
Cube Builder Plug-in" [Active]
org.eclipse.birt.report.designer.ui.cubebuilder.nl_de
(3.5.0.v20090620043401) "org.eclipse.birt.report.designer.ui.cubebuilder
German NLS Support" [Resolved]
org.eclipse.birt.report.designer.ui.data (2.5.0.v20090603) "BIRT Designer
Data Plug-in" [Active]
org.eclipse.birt.report.designer.ui.editor.script (2.5.0.v20090603) "BIRT
Enhanced Script Editor Plug-in" [Active]
org.eclipse.birt.report.designer.ui.editor.script.nl_de
(3.5.0.v20090620043401) "org.eclipse.birt.report.designer.ui.editor.script
German NLS Support" [Resolved]
org.eclipse.birt.report.designer.ui.editor.xml.wtp (2.5.0.v20090603) "BIRT
Advanced XML Editor Plug-in" [Active]
org.eclipse.birt.report.designer.ui.editor.xml.wtp.nl_de
(3.5.0.v20090620043401)
"org.eclipse.birt.report.designer.ui.editor.xml.wtp German NLS Support"
[Resolved]
org.eclipse.birt.report.designer.ui.editors (2.5.0.v20090603) "BIRT
MultipageEditor Extension Point Plug-in" [Active]
org.eclipse.birt.report.designer.ui.editors.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.report.designer.ui.editors German NLS Support" [Resolved]
org.eclipse.birt.report.designer.ui.editors.schematic (2.5.0.v20090603)
"BIRT Editors Plug-in" [Active]
org.eclipse.birt.report.designer.ui.editors.schematic.nl_de
(3.5.0.v20090620043401)
"org.eclipse.birt.report.designer.ui.editors.schematic German NLS Support"
[Resolved]
org.eclipse.birt.report.designer.ui.ide (2.5.0.v20090603) "BIRT Designer
UI for IDE" [Active]
org.eclipse.birt.report.designer.ui.ide.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.report.designer.ui.ide German NLS Support" [Resolved]
org.eclipse.birt.report.designer.ui.lib (2.5.0.v20090603) "BIRT Designer
UI for Library" [Starting]
org.eclipse.birt.report.designer.ui.lib.explorer (2.5.0.v20090603) "BIRT
Library Explorer Plug-in" [Starting]
org.eclipse.birt.report.designer.ui.lib.explorer.nl_de
(3.5.0.v20090620043401) "org.eclipse.birt.report.designer.ui.lib.explorer
German NLS Support" [Resolved]
org.eclipse.birt.report.designer.ui.lib.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.report.designer.ui.lib German NLS Support" [Resolved]
org.eclipse.birt.report.designer.ui.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.report.designer.ui German NLS Support" [Resolved]
org.eclipse.birt.report.designer.ui.preview.web (2.5.0.v20090603) "BIRT
Preview Plug-in" [Active]
org.eclipse.birt.report.designer.ui.preview.web.nl_de
(3.5.0.v20090620043401) "org.eclipse.birt.report.designer.ui.preview.web
German NLS Support" [Resolved]
org.eclipse.birt.report.designer.ui.samples.ide (2.5.0.v20090603) "Report
Samples IDE Plug-in" [Starting]
org.eclipse.birt.report.designer.ui.samples.ide.nl_de
(3.5.0.v20090620043401) "org.eclipse.birt.report.designer.ui.samples.ide
German NLS Support" [Resolved]
org.eclipse.birt.report.designer.ui.samplesview (2.5.0.v20090603) "BIRT
Report Samples View Plug-in" [Starting]
org.eclipse.birt.report.designer.ui.samplesview.nl_de
(3.5.0.v20090620043401) "org.eclipse.birt.report.designer.ui.samplesview
German NLS Support" [Resolved]
org.eclipse.birt.report.designer.ui.views (2.5.0.v20090603) "BIRT UI Views
Plug-in" [Active]
org.eclipse.birt.report.designer.ui.views.nl_de (3.5.0.v20090620043401)
"org.eclipse.birt.report.designer.ui.views German NLS Support" [Resolved]
org.eclipse.birt.report.engine (2.5.0.v20090616) "BIRT Engine" [Active]
org.eclipse.birt.report.engine.dataextraction (2.5.0.v20090611)
"Dataextraction Plug-in" [Starting]
org.eclip
Re: Trigger problem with BIRT 2.5.0 [message #480802 is a reply to message #480489] Tue, 18 August 2009 14:33 Go to previous messageGo to next message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

Farideh,

Any chance you could download the allinone build to a separate directory
and try your code in it?

Jason

farideh wrote:
>
> Jason,
> i did it and i still have the problem.
>
> My configuration follows.
>
> farideh
>
>
> *** Date: Monday, August 17, 2009 1:21:08 PM Germany Time
>
> *** Platform Details:
>
> *** System properties:
> MaxCubeColumnLevels=50
> MaxCubeRowLevels=50
> MaxDataSetRows=500
> RUN_UNDER_ECLIPSE=false
> awt.toolkit=sun.awt.windows.WToolkit
> birt.designer=true
> birt.viewer.root.path=/D:/AixBOMS/eclipse-3.5.0/eclipse/plug ins/org.eclipse.birt.report.viewer_2.5.0.v20090520/birt/
>
> birt.viewer.working.path=D:\AixBOMS\svn\navigator\trunk-3.5\ .metadata\.plugins\org.eclipse.birt.report.viewer
>
> eclipse.application=org.eclipse.ui.ide.workbench
> eclipse.buildId=I20090611-1540
> eclipse.commands=-os
> win32
> -ws
> win32
> -arch
> x86
> -showsplash
> D:\AixBOMS\eclipse-3.5.0\eclipse\\plugins\org.eclipse.platfo rm_3.3.200.v200906111540\splash.bmp
>
> -launcher
> D:\AixBOMS\eclipse-3.5.0\eclipse\eclipse.exe
> -name
> Eclipse
> --launcher.library
> D:\AixBOMS\eclipse-3.5.0\eclipse\plugins/org.eclipse.equinox .launcher.win32.win32.x86_1.0.200.v20090519\eclipse_1206.dll
>
> -startup
> D:\AixBOMS\eclipse-3.5.0\eclipse\plugins/org.eclipse.equinox .launcher_1.0.200.v20090520.jar
>
> -showlocation
> -nl
> en
> -data
> D:\AixBOMS\svn\navigator\trunk-3.5
> -vm
> D:\AixBOMS\SUN\jre1.5.0_14\bin\client\jvm.dll
> eclipse.home.location=file:/D:/AixBOMS/eclipse-3.5.0/eclipse /
> eclipse.launcher=D:\AixBOMS\eclipse-3.5.0\eclipse\eclipse.ex e
> eclipse.p2.data.area=@config.dir/../p2/
> eclipse.p2.profile=SDKProfile
> eclipse.product=org.eclipse.sdk.ide
> eclipse.startTime=1250493034743
> eclipse.vm=D:\AixBOMS\SUN\jre1.5.0_14\bin\client\jvm.dll
> eclipse.vmargs=-Xms40m
> -Xmx768m
> -XX:MaxPermSize=256m
> -Djava.class.path=D:\AixBOMS\eclipse-3.5.0\eclipse\plugins/o rg.eclipse.equinox.launcher_1.0.200.v20090520.jar
>
> file.encoding=Cp1252
> file.encoding.pkg=sun.io
> file.separator=\
> http.nonProxyHosts=localhost| 127.0.0.1|vmaso072|aso239|<local>
> http.proxyHost=fwcoco
> http.proxyPort=8080
> http.proxySet=true
> https.nonProxyHosts=localhost| 127.0.0.1|vmaso072|aso239|<local>
> https.proxyHost=fwcoco
> https.proxyPort=8080
> https.proxySet=true
> java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
> java.awt.printerjob=sun.awt.windows.WPrinterJob
> java.class.path=D:\AixBOMS\eclipse-3.5.0\eclipse\plugins/org .eclipse.equinox.launcher_1.0.200.v20090520.jar
>
> java.class.version=49.0
> java.endorsed.dirs=D:\AixBOMS\SUN\jre1.5.0_14\lib\endorsed
> java.ext.dirs=D:\AixBOMS\SUN\jre1.5.0_14\lib\ext
> java.home=D:\AixBOMS\SUN\jre1.5.0_14
> java.io.tmpdir=C:\DOKUME~1\Zahra\LOKALE~1\Temp\
> java.library.path=D:\AixBOMS\eclipse-3.5.0\eclipse;.;C:\WIND OWS\system32;C:\WINDOWS;D:\oracle\product\10.2.0\db_1\bin;C: \WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Pro gramme\IDM
> Computer Solutions\UltraEdit-32
> java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
> java.runtime.version=1.5.0_14-b03
> java.specification.name=Java Platform API Specification
> java.specification.vendor=Sun Microsystems Inc.
> java.specification.version=1.5
> java.vendor=Sun Microsystems Inc.
> java.vendor.url=http://java.sun.com/
> java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi
> java.version=1.5.0_14
> java.vm.info=mixed mode
> java.vm.name=Java HotSpot(TM) Client VM
> java.vm.specification.name=Java Virtual Machine Specification
> java.vm.specification.vendor=Sun Microsystems Inc.
> java.vm.specification.version=1.0
> java.vm.vendor=Sun Microsystems Inc.
> java.vm.version=1.5.0_14-b03
> line.separator=
>
> org.apache.commons.logging.Log=org.apache.commons.logging.im pl.NoOpLog
> org.eclipse.birt.report.script.debug.launching.debuggerActiv e=false
> org.eclipse.debug.ui.breakpoints.toggleFactoriesUsed=false
> org.eclipse.equinox.launcher.splash.location=D:\AixBOMS\ecli pse-3.5.0\eclipse\\plugins\org.eclipse.platform_3.3.200.v200 906111540\splash.bmp
>
> org.eclipse.equinox.simpleconfigurator.configUrl=file:org.ec lipse.equinox.simpleconfigurator/bundles.info
>
> org.eclipse.update.reconcile=false
> org.eclipse.update.resolution_url=
> org.osgi.framework.executionenvironment=OSGi/Minimum-1.0,OSG i/Minimum-1.1,OSGi/Minimum-1.2,JRE-1.1,J2SE-1.2,J2SE-1.3,J2S E-1.4,J2SE-1.5
>
> org.osgi.framework.language=en
> org.osgi.framework.os.name=WindowsXP
> org.osgi.framework.os.version=5.1.0
> org.osgi.framework.processor=x86
> org.osgi.framework.system.packages=javax.accessibility,javax .activity,javax.crypto,javax.crypto.interfaces,javax.crypto. spec,javax.imageio,javax.imageio.event,javax.imageio.metadat a,javax.imageio.plugins.bmp,javax.imageio.plugins.jpeg,javax .imageio.spi,javax.imageio.stream,javax.management,javax.man agement.loading,javax.management.modelmbean,javax.management .monitor,javax.management.openmbean,javax.management.relatio n,javax.management.remote,javax.management.remote.rmi,javax. management.timer,javax.naming,javax.naming.directory,javax.n aming.event,javax.naming.ldap,javax.naming.spi,javax.net,jav ax.net.ssl,javax.print,javax.print.attribute,javax.print.att ribute.standard,javax.print.event,javax.rmi,javax.rmi.CORBA, javax.rmi.ssl,javax.security.auth,javax.security.auth.callba ck,javax.security.auth.kerberos,javax.security.auth.login,ja vax.security.auth.spi,javax.security.auth.x500,javax.securit y.cert,javax.security.sasl,javax.sound.midi,javax.sound.midi .spi,javax.sound.sampled,ja
vax.sound.sampled.spi,javax.sql,javax.sql.rowset,javax.sql.r owset.serial,javax.sql.rowset.spi,javax.swing,javax.swing.bo rder,javax.swing.colorchooser,javax.swing.event,javax.swing. filechooser,javax.swing.plaf,javax.swing.plaf.basic,javax.sw ing.plaf.metal,javax.swing.plaf.multi,javax.swing.plaf.synth ,javax.swing.table,javax.swing.text,javax.swing.text.html,ja vax.swing.text.html.parser,javax.swing.text.rtf,javax.swing. tree,javax.swing.undo,javax.transaction,javax.transaction.xa ,javax.xml,javax.xml.datatype,javax.xml.namespace,javax.xml. parsers,javax.xml.transform,javax.xml.transform.dom,javax.xm l.transform.sax,javax.xml.transform.stream,javax.xml.validat ion,javax.xml.xpath,org.ietf.jgss,org.omg.CORBA,org.omg.CORB A_2_3,org.omg.CORBA_2_3.portable,org.omg.CORBA.DynAnyPackage ,org.omg.CORBA.ORBPackage,org.omg.CORBA.portable,org.omg.COR BA.TypeCodePackage,org.omg.CosNaming,org.omg.CosNaming.Namin gContextExtPackage,org.omg.CosNaming.NamingContextPackage,or g.omg.Dynamic,org.omg.DynamicA
ny,org.omg.DynamicAny.DynAnyFactoryPackage,org.omg.DynamicAn y.DynAnyPackage,org.omg.IOP,org.omg.IOP.CodecFactoryPackage, org.omg.IOP.CodecPackage,org.omg.Messaging,org.omg.PortableI nterceptor,org.omg.PortableInterceptor.ORBInitInfoPackage,or g.omg.PortableServer,org.omg.PortableServer.CurrentPackage,o rg.omg.PortableServer.POAManagerPackage,org.omg.PortableServ er.POAPackage,org.omg.PortableServer.portable,org.omg.Portab leServer.ServantLocatorPackage,org.omg.SendingContext,org.om g.stub.java.rmi,org.w3c.dom,org.w3c.dom.bootstrap,org.w3c.do m.css,org.w3c.dom.events,org.w3c.dom.html,org.w3c.dom.ls,org .w3c.dom.ranges,org.w3c.dom.stylesheets,org.w3c.dom.traversa l,org.w3c.dom.views
> ,org.xml.sax,org.xml.sax.ext,org.xml.sax.helpers
> org.osgi.framework.vendor=Eclipse
> org.osgi.framework.version=1.5.0
> org.osgi.supports.framework.extension=true
> org.osgi.supports.framework.fragment=true
> org.osgi.supports.framework.requirebundle=true
> os.arch=x86
> os.name=Windows XP
> os.version=5.1
> osgi.arch=x86
> osgi.bundles=reference:file:javax.transaction_1.1.1.v2009061 61300.jar,reference:file:org.eclipse.osgi.nl_de_3.5.0.v20090 620043401.jar,reference:file: org.eclipse.equinox.simpleconfigurator_1.0.100.v20090520-190 5.jar @1:start
>
> osgi.bundles.defaultStartLevel=4
> osgi.bundlestore=D:\AixBOMS\eclipse-3.5.0\eclipse\configurat ion\org.eclipse.osgi\bundles
>
> osgi.configuration.area=file:/D:/AixBOMS/eclipse-3.5.0/eclip se/configuration/
>
> osgi.framework=file:/d:/AixBOMS/eclipse-3.5.0/eclipse/plugin s/org.eclipse.osgi_3.5.0.v20090520.jar
>
> osgi.framework.extensions=reference:file:javax.transaction_1 .1.1.v200906161300.jar,reference:file:org.eclipse.osgi.nl_de _3.5.0.v20090620043401.jar
>
> osgi.framework.shape=jar
> osgi.framework.version=3.5.0.v20090520
> osgi.frameworkClassPath=.,
> file:d:/AixBOMS/eclipse-3.5.0/eclipse/plugins/javax.transact ion_1.1.1.v200906161300.jar,
> file:d:/AixBOMS/eclipse-3.5.0/eclipse/plugins/org.eclipse.os gi.nl_de_3.5.0.v20090620043401.jar
>
> osgi.install.area=file:/D:/AixBOMS/eclipse-3.5.0/eclipse/
> osgi.instance.area=file:/D:/AixBOMS/svn/navigator/trunk-3.5/
> osgi.instance.area.default=file:/C:/Dokumente und
> Einstellungen/Zahra/workspace/
> osgi.logfile=D:\AixBOMS\svn\navigator\trunk-3.5\.metadata\.l og
> osgi.manifest.cache=D:\AixBOMS\eclipse-3.5.0\eclipse\configu ration\org.eclipse.osgi\manifests
>
> osgi.nl=en
> osgi.nl.user=en
> osgi.os=win32
> osgi.splashLocation=D:\AixBOMS\eclipse-3.5.0\eclipse\\plugin s\org.eclipse.platform_3.3.200.v200906111540\splash.bmp
>
> osgi.splashPath=platform:/base/plugins/org.eclipse.platform
> osgi.syspath=d:\AixBOMS\eclipse-3.5.0\eclipse\plugins
> osgi.tracefile=D:\AixBOMS\svn\navigator\trunk-3.5\.metadata\ trace.log
> osgi.ws=win32
> path.separator=;
> sun.arch.data.model=32
> sun.boot.class.path=D:\AixBOMS\SUN\jre1.5.0_14\lib\rt.jar;D: \AixBOMS\SUN\jre1.5.0_14\lib\i18n.jar;D:\AixBOMS\SUN\jre1.5. 0_14\lib\sunrsasign.jar;D:\AixBOMS\SUN\jre1.5.0_14\lib\jsse. jar;D:\AixBOMS\SUN\jre1.5.0_14\lib\jce.jar;D:\AixBOMS\SUN\jr e1.5.0_14\lib\charsets.jar;D:\AixBOMS\SUN\jre1.5.0_14\classe s
>
> sun.boot.library.path=D:\AixBOMS\SUN\jre1.5.0_14\bin
> sun.cpu.endian=little
> sun.cpu.isalist=
> sun.desktop=windows
> sun.io.unicode.encoding=UnicodeLittle
> sun.jnu.encoding=Cp1252
> sun.management.compiler=HotSpot Client Compiler
> sun.os.patch.level=Service Pack 3
> user.country=DE
> user.dir=D:\AixBOMS\eclipse-3.5.0\eclipse
> user.home=C:\Dokumente und Einstellungen\Zahra
> user.language=de
> user.name=zahra
> user.timezone=Europe/Berlin
> user.variant=
>
> *** Features:
> ca.ecliptical.emf.xpath (2.0.1.20071218052038) "XPath Support for EMF"
> ca.ecliptical.emf.xpath.source (2.0.1.20071218052038) "XPath Support for
> EMF Source"
> net.entropysoft.jmx.feature (2.0.14) "JmxEntropy"
> net.sf.eclipsensis (0.9.7.2) "EclipseNSIS"
> net.sf.eclipsensis.installoptions (0.9.7) "EclipseNSIS InstallOptions
> Editor"
> net.sf.eclipsensis.utilities (0.9.2.2) "EclipseNSIS Utilities"
> org.eclipse.acceleo (0.8.0.v200906161003) "Acceleo Common Utility Classes"
> org.eclipse.acceleo.doc (0.8.0.v200906161003) "Acceleo Documentation"
> org.eclipse.acceleo.examples (0.8.0.v200906161003) "Acceleo Examples"
> org.eclipse.acceleo.sdk (0.8.0.v200906161003) "Acceleo Common Utility
> Classes"
> org.eclipse.acceleo.source (0.8.0.v200906161003) "Acceleo Runtime Source"
> org.eclipse.acceleo.ui.capabilities (0.8.0.v200906161003) "Acceleo UI
> capability definitions"
> org.eclipse.birt (2.5.0.v20090607-9ODS6GD7wmMtz-DbWuHKMt_6VlSF)
> "Business Intelligence and Reporting Tools"
> org.eclipse.birt.chart.cshelp (2.5.0.v20090402-34-7w311A1728) "BIRT
> Chart Context-sensitive Help"
> org.eclipse.birt.cshelp (2.5.0.v20090402-34-7w311A1728) "BIRT
> Context-sensitive Help"
> org.eclipse.birt.doc (2.5.0.v20090521-34-7w311A1726) "BIRT Documentation"
> org.eclipse.birt.example (2.5.0.v20090611-7F7Y-DZRDEBDrGg) "BIRT Example"
> org.eclipse.birt.report.designer.editor.xml.wtp
> (2.5.0.v20090611-7m9a4FTy215N3qZ5UkRE) "BIRT Advanced XML Editor Plug-in"
> org.eclipse.cdt.mylyn (5.1.0.200906161748) "Mylyn Bridge: C/C++
> Development"
> org.eclipse.cvs (1.1.100.v20090514-7E79FEc9BJ99r9YFR6JOEF) "Eclipse CVS
> Client"
> org.eclipse.datatools.common.doc.user
> (1.7.0.v200906111100-26-311A16321A3557) "Data Tools Platform User
> Documentation"
> org.eclipse.datatools.connectivity.doc.user
> (1.7.0.v200906111100-37D-7733L3D753L7BBF) "Data Tools Platform
> Connectivity User Documentation"
> org.eclipse.datatools.connectivity.feature
> (1.7.0.v200906050400-7B7OAGEn1XeXjC4wj6KETrSOP8) "Data Tools Platform
> Connectivity Plug-in"
> org.eclipse.datatools.connectivity.oda.designer.feature
> (1.7.0.v200906050400-7E7C6DZRDEBDsDSDijc) "DTP ODA Designer UI Framework
> Plug-in"
> org.eclipse.datatools.connectivity.oda.feature
> (1.7.0.v200906050400-7H791CcNBC0BjDNBddV) "DTP Open Data Access"
> org.eclipse.datatools.doc.user (1.7.0.v200906111100-47C-8w95ENAJ69EHJF7)
> "Data Tool Platform User Documentation"
> org.eclipse.datatools.enablement.apache.derby.feature
> (1.7.0.v200906050400-7768bBmKDLfMjGqHEHL7PAB) "High-level Sybase
> Enablement Plug-in"
> org.eclipse.datatools.enablement.feature
> (1.7.0.v200906050400-7J8i0BWwPJNaz-Fe15qs9q203H-b) "Eclipse Data Tools
> Platform Enablement"
> org.eclipse.datatools.enablement.hsqldb.feature
> (1.7.0.v200906050400-67B0AqGBJVKbEmF3FJ7PAB) "Eclipse Data Tools
> Platform Enablement"
> org.eclipse.datatools.enablement.ibm.feature
> (1.7.0.v200906050400-7F47HFC7sRTNSjRsTNRR) "Eclipse Data Tools Platform
> Enablement"
> org.eclipse.datatools.enablement.ingres.feature
> (1.7.0.v200906050400-540AkF77g7VACAJJM) "Eclipse Data Tools Platform
> Enablement"
> org.eclipse.datatools.enablement.jdbc.feature
> (1.7.0.v200906050400-4-29oB55W5N6A6O9A) "High-level Sybase Enablement
> Plug-in"
> org.eclipse.datatools.enablement.jdt.feature
> (1.7.0.v200906050400-2-07w311A17131A11) "Data Tools Platform
> Connectivity JDT Extension Plug-in"
> org.eclipse.datatools.enablement.msft.feature
> (1.7.0.v200906050400-542AkF77g7V7F7g77) "Eclipse Data Tools Platform
> Enablement"
> org.eclipse.datatools.enablement.mysql.feature
> (1.7.0.v200906050400-546AkF77g7V7F7g77) "Eclipse Data Tools Platform
> Enablement"
> org.eclipse.datatools.enablement.oda.designer.feature
> (1.7.0.v200906050400-33-8s733L3D6C47AG) "Eclipse Data Tools Platform XML
> ODA Designer"
> org.eclipse.datatools.enablement.oda.feature
> (1.7.0.v200906050400-7A7T5DZRDEADiKjEbOs) "Eclipse Data Tools Platform
> XML ODA Runtime Driver"
> org.eclipse.datatools.enablement.oracle.feature
> (1.7.0.v200906050400-548aAkF77g7V7F7g77) "Eclipse Data Tools Platform
> Enablement"
> org.eclipse.datatools.enablement.postgresql.feature
> (1.7.0.v200906050400-542AkF77g7V7F7g77) "Eclipse Data Tools Platform
> Enablement"
> org.eclipse.datatools.enablement.sap.feature
> (1.7.0.v200906050400-540AkF77g7V7F7g77) "Eclipse Data Tools Platform
> Enablement"
> org.eclipse.datatools.enablement.sdk.feature
> (1.7.0.v200906050400-7I8r-FE9JfFkjWT8qt6UI5jX2laJ) "Eclipse Data Tools
> Platform Enablement"
> org.eclipse.datatools.enablement.sqlite.feature
> (1.7.0.v200906050400-541AkF77g7V7F7g77) "Eclipse Data Tools Platform
> Enablement"
> org.eclipse.datatools.enablement.sybase.feature
> (1.7.0.v200906050400-7E45F9NiNWvOOVpNfUR) "High-level Sybase Enablement
> Plug-in"
> org.eclipse.datatools.intro (1.7.0.v200906050400-26-7w311A17142212)
> "Eclipse Data Tools Platform Intro Plug-in"
> org.eclipse.datatools.modelbase.feature
> (1.7.0.v200906050400-77-3CcNBC0BkBNNN_0) "Eclipse Data Tools Platform
> SQLModel Plug-in"
> org.eclipse.datatools.sdk.feature
> (1.7.0.v200906050400-7O9H-FD0IVEH6AsdTaISiFGNkk6p) "DTP SDK Plug-in"
> org.eclipse.datatools.sqldevtools.ddlgen.feature
> (1.7.0.v200906050400-7A-0F7RZHIXI6HZXnHX) "Eclipse Data Tools Platform
> FE UI Plug-in"
> org.eclipse.datatools.sqldevtools.feature
> (1.7.0.v200906050400-7N7q-FDr_gSWLQCJJODUlz-1btbZ) "Eclipse Data Tools
> Platform SQL Tools Common UI Plug-in"
> org.eclipse.datatools.sqldevtools.parsers.feature
> (1.7.0.v200906050400-602BgJ99q9_9OGXFJ) "Eclipse Data Tools Platform SQL
> Parser Plugin"
> org.eclipse.datatools.sqltools.doc.user
> (1.7.0.v200906111100-37D-7733L3D753L7BBF) "Data Tools Platform SQL Tools
> User Documentation"
> org.eclipse.dltk.core (1.0.0.v20090610-1638-7C--EAAoOQBPbbrBcPz0b)
> "Eclipse Dynamic Languages Toolkit"
> org.eclipse.dltk.core.source
> (1.0.0.v20090610-1638-7C--EAAoOQBPbbrBcPz0b) "Dynamic Languages Toolkit
> Core Source"
> org.eclipse.dltk.itcl (1.0.0.v20090613-1432-3--9oA55V5L9K28LC_) "iTcl
> Extension Support for TCL language"
> org.eclipse.dltk.itcl.source (1.0.0.v20090613-1432-3--9oA55V5L9K28LC_)
> "Dynamic Languages Toolkit (DLTK) iTcl IDE Source"
> org.eclipse.dltk.javascript.source
> (1.0.0.v20090610-1638-7A--E9IgKLsLFbY9UAo0) "Dynamic Languages Toolkit
> (DLTK) TCL IDE Source"
> org.eclipse.dltk.mylyn (1.0.0.v20090610-1638-1--7w311_17261119) "Mylyn
> DLTK Bridge"
> org.eclipse.dltk.mylyn.source (1.0.0.v20090610-1638-1--7w311_17261119)
> "Dynamic Languages Toolkit (DLTK) Mylyn Integration Source"
> org.eclipse.dltk.python.source (1.0.0.v20090610-1638-6--BcMAB0AiHf4DeLQ)
> "Dynamic Languages Toolkit (DLTK) TCL IDE Source"
> org.eclipse.dltk.rse.source (1.0.0.v20090610-1638-2--8s733K3E5615C9C)
> "Dynamic Languages Toolkit (DLTK) RSE Environment Source"
> org.eclipse.dltk.ruby (1.0.0.v20090610-1638-7B--E_EkMO1NTYtAZCz-9) "Ruby
> Development Tools"
> org.eclipse.dltk.ruby.source
> (1.0.0.v20090610-1638-7B--E_EkMO1NTYtAZCz-9) "Dynamic Languages Toolkit
> (DLTK) Ryby IDE Source"
> org.eclipse.dltk.tcl (1.0.0.v20090610-1638-7D--EB7sQSMRjetCfT7W) "Tcl
> Development Tools"
> org.eclipse.dltk.tcl.source (1.0.0.v20090610-1638-7D--EB7sQSMRjetCfT7W)
> "Dynamic Languages Toolkit (DLTK) TCL IDE Source"
> org.eclipse.dltk.xotcl (1.0.0.v20090610-1638-4--_kE77g7TAS28NCF) "XOTcl
> Extension Support for TCL language"
> org.eclipse.dltk.xotcl.source (1.0.0.v20090610-1638-4--_kE77g7TAS28NCF)
> "Dynamic Languages Toolkit (DLTK) XOTcl IDE Source"
> org.eclipse.draw2d (3.5.0.v20090422-2346-44-7w311A163902622) "Graphical
> Editing Framework Draw2d"
> org.eclipse.ecf.core (3.0.0.v20090616-0832) "Eclipse Communication
> Framework (ECF)"
> org.eclipse.emf (2.5.0.v200906151043) "EMF - Eclipse Modeling Framework
> Runtime and Tools"
> org.eclipse.emf.cdo (2.0.0.v200906160459) "CDO Model Repository Client"
> org.eclipse.emf.cdo.defs (2.0.0.v200906160459) "CDO Model Repository
> Definitions "
> org.eclipse.emf.cdo.doc (2.0.0.v200906160459) "CDO Model Repository
> Documentation"
> org.eclipse.emf.cdo.examples (2.0.0.v200906160459) "CDO Model Repository
> Examples"
> org.eclipse.emf.cdo.server (2.0.0.v200906160459) "CDO Model Repository
> Server"
> org.eclipse.emf.codegen (2.5.0.v200906151043) "EMF Code Generation"
> org.eclipse.emf.codegen.ecore (2.5.0.v200906151043) "EMF Ecore Code
> Generator"
> org.eclipse.emf.codegen.ecore.ui (2.5.0.v200906151043) "EMF Ecore Code
> Generator UI"
> org.eclipse.emf.codegen.ui (2.4.0.v200906151043) "EMF Code Generation UI"
> org.eclipse.emf.common (2.5.0.v200906151043) "EMF Common"
> org.eclipse.emf.common.ui (2.5.0.v200906151043) "EMF Common UI"
> org.eclipse.emf.compare (1.0.0.v200906160908) "EMF Compare core"
> org.eclipse.emf.compare.doc (1.0.0.v200906160908) "EMF Compare
> Documentation"
> org.eclipse.emf.compare.sdk (1.0.0.v200906160908) "EMF Compare core"
> org.eclipse.emf.compare.source (1.0.0.v200906160908) "EMF Compare Source"
> org.eclipse.emf.converter (2.5.0.v200906151043) "EMF Model Converter"
> org.eclipse.emf.databinding (1.1.0.v200906151043) "EMF Data Binding"
> org.eclipse.emf.databinding.edit (1.1.0.v200906151043) "EMF Edit Data
> Binding"
> org.eclipse.emf.doc (2.5.0.v200906151043) "EMF Documentation"
> org.eclipse.emf.ecore (2.5.0.v200906151043) "EMF Ecore"
> org.eclipse.emf.ecore.edit (2.5.0.v200906151043) "EMF Ecore Edit"
> org.eclipse.emf.ecore.editor (2.5.0.v200906151043) "EMF Sample Ecore
> Editor"
> org.eclipse.emf.ecoretools (0.9.0.v200906031210) "Ecore Tools (Incubation)"
> org.eclipse.emf.ecoretools.doc (0.8.0.v200906031210) "Ecore Tools
> Documentation (Incubation)"
> org.eclipse.emf.ecoretools.source (0.9.0.v200906031210) "Ecore Tools
> Source (Incubation)"
> org.eclipse.emf.edit (2.5.0.v200906151043) "EMF Edit"
> org.eclipse.emf.edit.ui (2.5.0.v200906151043) "EMF Edit UI"
> org.eclipse.emf.index.source (0.7.0.v200906161042) "EMF Index Source
> (Incubation)"
> org.eclipse.emf.mapping (2.5.0.v200906151043) "EMF Mapping"
> org.eclipse.emf.mapping.ecore (2.5.0.v200906151043) "EMF Ecore Mapping"
> org.eclipse.emf.mapping.ecore.editor (2.5.0.v200906151043) "EMF Ecore
> Mapping Editor"
> org.eclipse.emf.mapping.ui (2.5.0.v200906151043) "EMF Mapping UI"
> org.eclipse.emf.mint (0.8.0.v200906110922) "Mint Runtime (Incubation)"
> org.eclipse.emf.mint.doc (0.8.0.v200906110922) "Mint Developer Guide
> (Incubation)"
> org.eclipse.emf.mwe.core (0.7.0.v200906160748) "MWE Core (Incubation)"
> org.eclipse.emf.mwe.core.source (0.7.0.v200906160748) "MWE Core Source
> (Incubation)"
> org.eclipse.emf.mwe.doc (0.7.0.v200906160748) "MWE Documentation
> (Incubation)"
> org.eclipse.emf.mwe.examples (0.7.0.v200906160748) "MWE Examples
> (Incubation)"
> org.eclipse.emf.mwe.examples.source (0.7.0.v200906160748) "MWE Examples
> Source (Incubation)"
> org.eclipse.emf.mwe.ui (0.7.0.v200906160748) "MWE UI (Incubation)"
> org.eclipse.emf.mwe.ui.source (0.7.0.v200906160748) "MWE Core UI Source
> (Incubation)"
> org.eclipse.emf.ocl (1.1.101.v200901271800-208_7w311A12382911) "Object
> Constraint Language (OCL) 2.0 Compatibility API"
> org.eclipse.emf.ocl.doc (1.2.1.v200901271800-208_7w311A17262341) "Object
> Constraint Language (OCL) 2.0 Compatibility API Documentation"
> org.eclipse.emf.query (1.2.100.v200901271643-218Z7w311A142A1142) "EMF
> Model Query"
> org.eclipse.emf.query.doc (1.2.100.v200901271543-33-8s733L357H5FB9) "EMF
> Model Query Documentation"
> org.eclipse.emf.query.ocl (1.2.100.v200901271643-21-7w311A142A1142) "EMF
> Model Query OCL Integration"
> org.eclipse.emf.teneo (1.1.0.v200906180911-786-DZRDEBDsL4EBKK) "EMF Teneo"
> org.eclipse.emf.teneo.doc (1.1.0.v200906180911-20-7w311A17291A22) "EMF
> Teneo Documentation"
> org.eclipse.emf.teneo.eclipselink
> (1.0.0.v200906180911-7A1-F7RZHIXI6ROIXQQ) "EMF Teneo EclipseLink Plug-in"
> org.eclipse.emf.transaction (1.3.0.v200901271819-35-8s733L365B4D6D) "EMF
> Model Transaction Core"
> org.eclipse.emf.transaction.doc (1.3.0.v200901271819-348Z8s733L357H5J5L)
> "EMF Model Transaction Documentation"
> org.eclipse.emf.validation (1.3.0.v200902052232-478-9oB55W58BQ8QBB) "EMF
> Validation Framework Core"
> org.eclipse.emf.validation.doc (1.3.0.v200901271722-35-8s733L357H5H77)
> "EMF Validation Framework Documentation"
> org.eclipse.emf.validation.ocl (1.2.0.v200901271722-22-7w311A12382833)
> "EMF Validation Framework OCL Integration"
> org.eclipse.emf.workspace (1.3.0.v200901271819-35-8s733L366A4F6E) "EMF
> Model Transaction Workbench Integration Core"
> org.eclipse.emf.workspace.doc (1.3.0.v200901271819-22-7w311A1238292A)
> "EMF Model Transaction Workbench Integration Documentation"
> org.eclipse.gef (3.5.0.v20090422-2346-7779-8192B6696L3ABD43733)
> "Graphical Editing Framework GEF"
> org.eclipse.gmf (1.1.1.v20090114-0940-7d8B0FXwnKwGb15VuKFF0ELpPk0b)
> "Graphical Modeling Framework"
> org.eclipse.gmf.doc (1.2.1.v20090114-0940-3218s733L3A5C13J73) "Graphical
> Modeling Framework Documentation"
> org.eclipse.gmf.examples.pde (1.2.0.v20090114-0940-318Z8s733L3D4B14H53)
> "Graphical Modeling Framework Examples"
> org.eclipse.gmf.runtime.notation
> (1.1.1.v20090114-0940-33-8s733L3C5715J78) "GMF Notation Model Support"
> org.eclipse.gmf.sdk (2.2.0.v20090114-0940-7C7B3BLund3tnivqKNVdZqeqJTs5)
> "Graphical Modeling Framework SDK"
> org.eclipse.gmf.tooling (2.2.0.v20090317-0630-7c7GFBVFLWUko2mBGJQ9Bgq)
> "Graphical Modeling Framework Tooling"
> org.eclipse.help (1.1.0.v20090602-7e7eFAlFEx2XZoYqwI68e2F) "Help System
> Base"
> org.eclipse.jdt (3.5.0.v20090527-2000-7r88FEeFJePyvYeA33DjZ_c1) "Eclipse
> Java Development Tools"
> org.eclipse.jet (1.0.0.v200906120945-508ZAkF77g7VBF7g77) "Java Emitter
> Templates (JET)"
> org.eclipse.jet.doc (1.0.0.v200906120945-2--7w311A17231A11) "Java
> Emitter Templates (JET) Documentation"
> org.eclipse.jet.source (1.0.0.v200906120945) "Eclipse Model to Text -
> JET SDK"
> org.eclipse.m2m.atl (3.0.0.v200906160347) "ATL - ATLAS Transformation
> Language"
> org.eclipse.m2m.atl.doc (3.0.0.v200906160347) "ATL Documentation"
> org.eclipse.m2m.atl.examples (3.0.0.v200906160347) "ATL Examples"
> org.eclipse.m2m.atl.source (3.0.0.v200906160347) "ATL Source"
> org.eclipse.m2m.qvt.oml (2.0.0.v20090316-1930-78--AkF77g7SCW3BeM7) "QVT
> Operational Compiler and Interpreter"
> org.eclipse.m2m.qvt.oml.common
> (2.0.0.v20090410-1820-79--AkF77g7SDX3BfM7) "QVT Operational Common"
> org.eclipse.m2m.qvt.oml.doc (2.0.0.v20090316-1930-3--7w311A172702611)
> "QVT Operational Documentation"
> org.eclipse.m2m.qvt.oml.editor (2.0.0.v20090316-1930-3--7w311A163702A51)
> "QVT Operational Editor"
> org.eclipse.m2m.qvt.oml.examples
> (2.0.0.v20090616-1500-3--7w311A171902941) "QVT Operational Samples"
> org.eclipse.m2m.qvt.oml.runtime
> (2.0.0.v20090410-1820-79--AkF77g7RCR3BeK7) "QVT Operational Runtime"
> org.eclipse.m2m.qvt.oml.sdk
> (2.0.0.v20090316-1930-7N--CLrFgFfNpRJ4OVlVbmHcXLqT) "QVT Operational
> Compiler and Interpreter"
> org.eclipse.mylyn_feature (3.2.0.v20090617-0100-e3x) "Mylyn"
> org.eclipse.mylyn.bugzilla_feature (3.2.0.v20090617-0100-e3x) "Mylyn"
> org.eclipse.mylyn.context_feature (3.2.0.v20090617-0100-e3x) "Mylyn"
> org.eclipse.mylyn.ide_feature (3.2.0.v20090617-0100-e3x) "Mylyn"
> org.eclipse.mylyn.java_feature (3.2.0.v20090617-0100-e3x) "Mylyn"
> org.eclipse.mylyn.pde_feature (3.2.0.v20090617-0100-e3x) "Mylyn"
> org.eclipse.mylyn.team_feature (3.2.0.v20090617-0100-e3x) "Mylyn"
> org.eclipse.mylyn.wikitext_feature (1.1.0.v20090617-0100-e3x) "Mylyn"
> org.eclipse.net4j (2.0.0.v200906160348) "Net4j Signalling Platform Runtime"
> org.eclipse.net4j.db (2.0.0.v200906160348) "Net4j DB Framework"
> org.eclipse.net4j.defs (2.0.0.v200906160348) "Net4j Signalling Platform
> Definitions"
> org.eclipse.net4j.doc (2.0.0.v200906160348) "Net4j Signalling Platform
> Documentation"
> org.eclipse.net4j.examples (2.0.0.v200906160348) "Net4j Signalling
> Platform Examples"
> org.eclipse.net4j.ui (2.0.0.v200906160348) "Net4j Signalling Platform UI"
> org.eclipse.ocl (1.3.0.v200901271800-46-9oB55V5I9P8M65) "Object
> Constraint Language (OCL) 2.0 Parser/Interpreter"
> org.eclipse.ocl.doc (1.3.0.v200901271800-35-8s733L3A6F5D63) "Object
> Constraint Language (OCL) 2.0 Documentation"
> org.eclipse.ocl.uml (2.0.0.v200901271800-3--7w311A16382511) "OCL 2.0
> Binding for UML"
> org.eclipse.pde (3.5.0.v20090123-7Z7_F8NFE-z0VXhWiu-8Qb95) "PDE"
> org.eclipse.platform (3.5.0.v20090611a-9gEeG1HFtQcmRThO4O3aR_fqSMvJR2sJ)
> "Eclipse Platform"
> org.eclipse.rcp (3.5.0.v20090519-9SA0FwxFv6x089WEf-TWh11) "Eclipse RCP"
> org.eclipse.rse (3.1.0.v200905272300-7L5A78wqaCHMdrOqK3DvjpYKCnp3)
> "Remote System Explorer End-User Runtime"
> org.eclipse.rse.core (3.1.0.v200905272300-7a7CEoFC7sRTNS_oZt3fk) "RSE Core"
> org.eclipse.rse.dstore (3.1.0.v200905272300-7L6EoEVVFGMFvQtVaPU) "RSE
> DStore Services"
> org.eclipse.rse.ftp (3.0.100.v200905272300-780A79oB55W5KBQBD9D) "RSE FTP
> Service"
> org.eclipse.rse.local (2.1.100.v200905272300-7B4EoBgJ99r9YJhJO99) "RSE
> Local Services"
> org.eclipse.rse.ssh (3.0.0.v200905272300-7A2BgAkF77g7RFZFJ77) "RSE SSH
> Services"
> org.eclipse.rse.telnet (2.2.0.v200905272300-773-AkF77g7RFZFIBF) "RSE
> Telnet Service"
> org.eclipse.rse.terminals (1.0.0.v200905272300-77--9uC6FSANEbEMAF4522)
> "RSE Terminals UI"
> org.eclipse.rse.useractions (1.1.100.v200905272300-31A78s733L3D7H7933)
> "Remote System Explorer User Actions"
> org.eclipse.sdk
> (3.5.0.v20090423-7Q7bA7DPQ1SM6OYQ7wKYJhI-z-xZJCmLTBRhtZ0o61b 1z) "Eclipse
> Project SDK"
> org.eclipse.team.svn (0.7.8.I20090506-1500) "Subversive SVN Team
> Provider (Incubation)"
> org.eclipse.team.svn.mylyn (0.7.8.I20090506-1500) "Subversive
> Integration for the Mylyn Project (Incubation)"
> org.eclipse.tm.terminal (3.0.0.v200905272300-4--7w311A16383411) "Target
> Management Terminal Widget"
> org.eclipse.uml2 (3.0.0.v200906011111) "UML2"
> org.eclipse.uml2.diagram (0.9.0.v200906031456) "UML2 Diagramming Plug-in
> (Incubation)"
> org.eclipse.uml2.doc (3.0.0.v200905041045) "UML2 Documentation"
> org.eclipse.uml2.examples (3.0.0.v200905041045) "UML2 Examples"
> org.eclipse.uml2tools (0.9.0.v200906031456) "UML2 Tools Plug-in
> (Incubation)"
> org.eclipse.wst.xml_ui.feature
> (3.1.0.v200905240756-7H6FMVDxtkM-5OgPGKK4xQocS5AL) "Eclipse XML Editors
> and Tools"
> org.eclipse.xpand (0.7.0.v200906160952) "Xpand core (Incubation)"
> org.eclipse.xpand.doc (0.7.0.v200906160952) "M2T Xpand Documentation
> (Incubation)"
> org.eclipse.xpand.examples (0.7.0.v200906160952) "Xpand Examples
> (Incubation)"
> org.eclipse.xpand.source (0.7.0.v200906160952) "Xpand SDK (Incubation)"
> org.eclipse.xpand.ui (0.7.0.v200906160952) "Xpand editor (Incubation)"
> org.eclipse.xpand.ui.source (0.7.0.v200906160952) "Xpand UI Developer
> Resources (Incubation)"
> org.eclipse.xsd (2.5.0.v200906151043) "XSD Model"
> org.eclipse.xsd.doc (2.5.0.v200906151043) "XSD Documentation"
> org.eclipse.xsd.ecore.converter (2.5.0.v200906151043) "XSD Ecore Converter"
> org.eclipse.xsd.edit (2.5.0.v200906151043) "XSD Edit"
> org.eclipse.xsd.editor (2.5.0.v200906151043) "XSD Sample Editor"
> org.eclipse.xsd.mapping (2.5.0.v200906151043) "XSD Mapping"
> org.eclipse.xsd.mapping.editor (2.5.0.v200906151043) "XSD Mapping Editor"
> org.eclipse.xtend (0.7.0.v200906160952) "Xtend core (Incubation)"
> org.eclipse.xtend.source (0.7.0.v200906160952) "Xtend Source (Incubation)"
> org.eclipse.xtend.typesystem.emf (0.7.0.v200906160952) "Xtend emf
> typesystem (Incubation)"
> org.eclipse.xtend.typesystem.uml2 (0.7.0.v200906160952) "Xtend UML2
> typesystem (Incubation)"
> org.eclipse.xtend.typesystem.uml2.source (0.7.0.v200906160952) "Xtend
> UML2 typesystem Source (Incubation)"
> org.eclipse.xtend.typesystem.xsd (0.7.0.v200906160952) "Xtend XSD
> typesystem (Incubation)"
> org.eclipse.xtend.typesystem.xsd.source (0.7.0.v200906160952) "Xtend XSD
> typesystem Source (Incubation)"
> org.eclipse.xtend.ui (0.7.0.v200906160952) "Xtend UI (Incubation)"
> org.eclipse.xtend.ui.source (0.7.0.v200906160952) "Xtend UI Developer
> Resources (Incubation)"
> org.eclipse.xtext.examples.source (0.7.0.v200906161042) "Xtext Examples
> Source (Incubation)"
> org.eclipse.xtext.runtime.source (0.7.0.v200906161042) "Xtext Runtime
> Source (Incubation)"
> org.eclipse.xtext.sdk (0.7.0.v200906161042) "Xtext (Incubation)"
> org.eclipse.xtext.sdk.source (0.7.0.v200906161042) "Xtext SDK Source
> (Incubation)"
> org.eclipse.xtext.ui.source (0.7.0.v200906161042) "Xtext UI Source
> (Incubation)"
> org.polarion.eclipse.team.svn.connector (2.2.0.I20090505-1500)
> "Subversive SVN Connectors"
> org.polarion.eclipse.team.svn.connector.javahl16 (2.2.0.I20090505-1500)
> "Subversive SVN 1.6 JavaHL Connector"
> org.polarion.eclipse.team.svn.connector.javahl16.win32
> (2.2.0.I20090505-1500) "JavaHL 1.6.0 Win32 Binaries"
> org.polarion.eclipse.team.svn.connector.svnkit16 (2.2.0.I20090505-1500)
> "Subversive SVN 1.6 SVN Kit Connector"
>
> *** Plug-in Registry:
> ca.ecliptical.emf.xpath (2.0.1.20071218052038) "XPath Support for EMF"
> [Resolved]
> ca.ecliptical.emf.xpath.source (2.0.1.20071218052038) "XPath Support for
> EMF Source" [Resolved]
> ca.ecliptical.emf.xpath.tests (2.0.1.20071218052038) "XPath Support for
> EMF Tests" [Active]
> ch.ethz.iks.r_osgi.remote (1.0.0.RC4_v20090616-0832) "R_OSGi Remote
> Service" [Active]
> ch.ethz.iks.slp (1.1.0.v20090616-0832) "jslp-osgi" [Active]
> com.caucho.hessian (3.1.3) "Caucho Hessian Plug-in" [Resolved]
> com.google.collect (0.8.0.v200906161042) "bundleName" [Resolved]
> com.google.guice (1.0.1.v200906161042) "Guice Plug-in" [Resolved]
> com.ibm.icu (4.0.1.v20090415) "International Components for Unicode for
> Java (ICU4J)" [Active]
> com.jcraft.jsch (0.1.41.v200903070017) "JSch" [Resolved]
> com.lowagie.itext (1.5.4.v20090608) "Lowagie Itext" [Resolved]
> com.lowagie.itext.nl_de (3.5.0.v20090620043401) "com.lowagie.itext
> German NLS Support" [Resolved]
> de.kupzog.ktable (2.1.3) "KTable Plug-in" [Resolved]
> javax.activation (1.1.0.v200905021805) "Apache Geronimo Activation
> Plug-in" [Resolved]
> javax.activation.nl_de (3.5.0.v20090620043401) "javax.activation German
> NLS Support" [Resolved]
> javax.mail (1.4.0.v200905040518) "Javax Mail Plug-in" [Resolved]
> javax.mail.nl_de (3.5.0.v20090620043401) "javax.mail German NLS Support"
> [Resolved]
> javax.persistence (1.99.0.v200906021518) "JPA 1.0 - Extended for OSGi
> (1.99)" [Resolved]
> javax.persistence.nl_de (3.5.0.v20090620043401) "javax.persistence
> German NLS Support" [Resolved]
> javax.servlet (2.5.0.v200806031605) "Servlet API Bundle" [Resolved]
> javax.servlet.jsp (2.0.0.v200806031607) "Java Server Pages API Bundle"
> [Resolved]
> javax.servlet.jsp.nl_de (3.5.0.v20090620043401) "javax.servlet.jsp
> German NLS Support" [Resolved]
> javax.servlet.nl_de (3.5.0.v20090620043401) "javax.servlet German NLS
> Support" [Resolved]
> javax.transaction (1.1.1.v200906161300) "jta 1.1 spec" [Resolved]
> javax.wsdl (1.5.1.v200806030408) "WSDL4J" [Resolved]
> javax.wsdl.nl_de (3.5.0.v20090620043401) "javax.wsdl German NLS Support"
> [Resolved]
> javax.xml (1.3.4.v200902170245) "JAXP XML" [Resolved]
> javax.xml.nl_de (3.5.0.v20090620043401) "javax.xml German NLS Support"
> [Resolved]
> javax.xml.rpc (1.1.0.v200905122109) "JAX-RPC" [Resolved]
> javax.xml.rpc.nl_de (3.5.0.v20090620043401) "javax.xml.rpc German NLS
> Support" [Resolved]
> javax.xml.soap (1.2.0.v200905122109) "SAAJ" [Resolved]
> javax.xml.soap.nl_de (3.5.0.v20090620043401) "javax.xml.soap German NLS
> Support" [Resolved]
> net.entropysoft.dashboard.plugin (2.0.14) "dashboard plugin" [Starting]
> net.entropysoft.jmx.plugin (2.0.14) "JmxEntropy" [Starting]
> net.sf.eclipsensis (0.9.7.2) "EclipseNSIS" [Active]
> net.sf.eclipsensis.installoptions (0.9.7) "EclipseNSIS InstallOptions
> Editor" [Active]
> net.sf.eclipsensis.startup (0.9.7) "EclipseNSIS Startup" [Active]
> net.sf.eclipsensis.update (0.9.7) "EclipseNSIS Update" [Active]
> net.sf.eclipsensis.utilities (0.9.2.2) "EclipseNSIS Utilities" [Starting]
> net.sf.jarsigner (0.9.2.2) "JARSigner Plug-in" [Starting]
> net.sf.jnigen (0.9.2.2) "JNIGen Plug-in" [Starting]
> net.sourceforge.lpg.lpgjavaruntime (1.1.0.v200803061910) "SourceForge
> LPG" [Resolved]
> net.sourceforge.lpg.lpgjavaruntime.nl_de (3.5.0.v20090620043401)
> "net.sourceforge.lpg.lpgjavaruntime German NLS Support" [Resolved]
> org.antlr.runtime (3.0.0.v200803061811) "ANTLR Runtime" [Resolved]
> org.antlr.runtime.nl_de (3.5.0.v20090620043401) "org.antlr.runtime
> German NLS Support" [Resolved]
> org.apache.ant (1.7.1.v20090120-1145) "Apache Ant" [Resolved]
> org.apache.axis (1.4.0.v200905122109) "Apache Web Services" [Resolved]
> org.apache.axis.nl_de (3.5.0.v20090620043401) "org.apache.axis German
> NLS Support" [Resolved]
> org.apache.batik.bridge (1.6.0.v200805290154) "Apache Batik
> Bridge/GVT/Scripting" [Resolved]
> org.apache.batik.bridge.nl_de (3.5.0.v20090620043401)
> "org.apache.batik.bridge German NLS Support" [Resolved]
> org.apache.batik.css (1.6.0.v200805290154) "Apache Batik CSS" [Resolved]
> org.apache.batik.css.nl_de (3.5.0.v20090620043401) "org.apache.batik.css
> German NLS Support" [Resolved]
> org.apache.batik.dom (1.6.0.v200805290154) "Apache Batik DOM" [Resolved]
> org.apache.batik.dom.nl_de (3.5.0.v20090620043401) "org.apache.batik.dom
> German NLS Support" [Resolved]
> org.apache.batik.dom.svg (1.6.0.v200805290154) "Apache Batik SVG DOM"
> [Resolved]
> org.apache.batik.dom.svg.nl_de (3.5.0.v20090620043401)
> "org.apache.batik.dom.svg German NLS Support" [Resolved]
> org.apache.batik.ext.awt (1.6.0.v200805290154) "Apache Batik AWT
> Utilities" [Resolved]
> org.apache.batik.ext.awt.nl_de (3.5.0.v20090620043401)
> "org.apache.batik.ext.awt German NLS Support" [Resolved]
> org.apache.batik.extension (1.6.0.v200805290154) "Apache Batik
> Extension" [Resolved]
> org.apache.batik.extension.nl_de (3.5.0.v20090620043401)
> "org.apache.batik.extension German NLS Support" [Resolved]
> org.apache.batik.parser (1.6.0.v200805290154) "Apache Batik Parser"
> [Resolved]
> org.apache.batik.parser.nl_de (3.5.0.v20090620043401)
> "org.apache.batik.parser German NLS Support" [Resolved]
> org.apache.batik.pdf (1.6.0.v200806031500) "Apache Batik PDF" [Resolved]
> org.apache.batik.pdf.nl_de (3.5.0.v20090620043401) "org.apache.batik.pdf
> German NLS Support" [Resolved]
> org.apache.batik.svggen (1.6.0.v200805290154) "Apache Batik SVG
> Generation" [Resolved]
> org.apache.batik.svggen.nl_de (3.5.0.v20090620043401)
> "org.apache.batik.svggen German NLS Support" [Resolved]
> org.apache.batik.swing (1.6.0.v200805290154) "Apache Batik Swing"
> [Resolved]
> org.apache.batik.swing.nl_de (3.5.0.v20090620043401)
> "org.apache.batik.swing German NLS Support" [Resolved]
> org.apache.batik.transcoder (1.6.0.v200805290154) "Apache Batik
> Transcoder" [Resolved]
> org.apache.batik.transcoder.nl_de (3.5.0.v20090620043401)
> "org.apache.batik.transcoder German NLS Support" [Resolved]
> org.apache.batik.util (1.6.0.v200805290154) "Apache Batik Utilities"
> [Resolved]
> org.apache.batik.util.gui (1.6.0.v200805290154) "Apache Batik GUI
> Utilities" [Resolved]
> org.apache.batik.util.gui.nl_de (3.5.0.v20090620043401)
> "org.apache.batik.util.gui German NLS Support" [Resolved]
> org.apache.batik.util.nl_de (3.5.0.v20090620043401)
> "org.apache.batik.util German NLS Support" [Resolved]
> org.apache.batik.xml (1.6.0.v200805290154) "Apache Batik XML" [Resolved]
> org.apache.batik.xml.nl_de (3.5.0.v20090620043401) "org.apache.batik.xml
> German NLS Support" [Resolved]
> org.apache.commons.beanutils (1.7.0.v200902170505) "Apache Commons
> BeanUtils" [Resolved]
> org.apache.commons.beanutils.nl_de (3.5.0.v20090620043401)
> "org.apache.commons.beanutils German NLS Support" [Resolved]
> org.apache.commons.cli (1.0.0.v20080604-1500) "pluginName" [Resolved]
> org.apache.commons.codec (1.3.0.v20080530-1600) "Apache Commons Codec
> Plug-in" [Resolved]
> org.apache.commons.collections (3.2.0.v200803061811) "Apache Commons
> Collections" [Resolved]
> org.apache.commons.collections.nl_de (3.5.0.v20090620043401)
> "org.apache.commons.collections German NLS Support" [Resolved]
> org.apache.commons.discovery (0.2.0.v200905122109) "Jakarta-Commons
> Discovery" [Resolved]
> org.apache.commons.discovery.nl_de (3.5.0.v20090620043401)
> "org.apache.commons.discovery German NLS Support" [Resolved]
> org.apache.commons.el (1.0.0.v200806031608) "Apache Commons JSP 2.0
> Expression Language Interpreter" [Resolved]
> org.apache.commons.el.nl_de (3.5.0.v20090620043401)
> "org.apache.commons.el German NLS Support" [Resolved]
> org.apache.commons.httpclient (3.1.0.v20080605-1935) "Apache Commons
> Httpclient" [Resolved]
> org.apache.commons.lang (2.3.0.v200803061910) "Apache Jakarta Commons
> Lang" [Resolved]
> org.apache.commons.lang (2.4.0.v20081016-1030) "Apache Jakarta Commons
> Lang" [Resolved]
> org.apache.commons.lang.nl_de (3.5.0.v20090620043401)
> "org.apache.commons.lang German NLS Support" [Resolved]
> org.apache.commons.logging (1.0.4.v200904062259) "Apache Commons Logging
> Plug-in" [Resolved]
> org.apache.commons.logging.nl_de (3.5.0.v20090620043401)
> "org.apache.commons.logging German NLS Support" [Resolved]
> org.apache.commons.net (2.0.0.v200905272248) "Apache Commons Net"
> [Resolved]
> org.apache.commons.net.nl_de (3.5.0.v20090620043401)
> "org.apache.commons.net German NLS Support" [Resolved]
> org.apache.derby (10.1.2.1_v200803061811) "Apache Derby Plug-in" [Resolved]
> org.apache.derby.core (10.3.1.4) "Apache Derby Core Plug-in for Eclipse"
> [Starting]
> org.apache.derby.core.nl_de (3.5.0.v20090620043401)
> "org.apache.derby.core German NLS Support" [Resolved]
> org.apache.derby.nl_de (3.5.0.v20090620043401) "org.apache.derby German
> NLS Support" [Resolved]
> org.apache.jasper (5.5.17.v200903231320) "Apache Jasper 2 Plug-in"
> [Resolved]
> org.apache.jasper.nl_de (3.5.0.v20090620043401) "org.apache.jasper
> German NLS Support" [Resolved]
> org.apache.log4j (1.2.13.v200903072027) "Apache Jakarta log4j Plug-in"
> [Resolved]
> org.apache.log4j.nl_de (3.5.0.v20090620043401) "org.apache.log4j German
> NLS Support" [Resolved]
> org.apache.lucene (1.9.1.v20080530-1600) "Apache Lucene" [Resolved]
> org.apache.lucene.analysis (1.9.1.v20080530-1600) "Apache Lucene
> Analysis" [Resolved]
> org.apache.xerces (2.9.0.v200909240008) "Apache Xerces-J" [Resolved]
> org.apache.xerces.nl_de (3.5.0.v20090620043401) "org.apache.xerces
> German NLS Support" [Resolved]
> org.apache.xml.resolver (1.2.0.v200902170519) "Apache XmlResolver"
> [Resolved]
> org.apache.xml.resolver.nl_de (3.5.0.v20090620043401)
> "org.apache.xml.resolver German NLS Support" [Resolved]
> org.apache.xml.serializer (2.7.1.v200902170519) "Apache XML Commons
> Serializer" [Resolved]
> org.apache.xml.serializer.nl_de (3.5.0.v20090620043401)
> "org.apache.xml.serializer German NLS Support" [Resolved]
> org.codehaus.groovy (1.6.1.200905091951) "Groovy Runtime Plug-in" [Active]
> org.codehaus.groovy.eclipse (1.6.1.200905091951) "Groovy Core" [Active]
> org.codehaus.groovy.eclipse.astviews (1.6.1.200905091951) "Groovy AST
> Views" [Starting]
> org.codehaus.groovy.eclipse.codeassist (1.6.1.200905091951) "Code Assist
> Core" [Starting]
> org.codehaus.groovy.eclipse.codeassist.completion (1.6.1.200905091951)
> "Code Completion Plug-in" [Starting]
> org.codehaus.groovy.eclipse.codebrowsing (1.6.1.200905091951) "Groovy
> Code Browsing" [Starting]
> org.codehaus.groovy.eclipse.collections (1.6.1.200905091951)
> "Collections Plug-in" [Resolved]
> org.codehaus.groovy.eclipse.core.help (1.6.1.200905091951)
> "GroovyEclipse Core Help" [Resolved]
> org.codehaus.groovy.eclipse.cstviewer (1.6.1.200905091951) "Groovy CST
> Viewer" [Starting]
> org.codehaus.groovy.eclipse.junit (1.6.1.200905091951) "Java Development
> Tools JUnit support" [Starting]
> org.codehaus.groovy.eclipse.refactoring (1.6.1.200905091951)
> "Refactoring Plug-in" [Starting]
> org.codehaus.groovy.eclipse.ui (1.6.1.200905091951) "Groovy UI" [Active]
> org.easymock (2.4.0.v20090202-0900) "EasyMock" [Resolved]
> org.eclipse.acceleo.common (0.8.0.v200906161003) "Acceleo Common Utility
> Classes" [Starting]
> org.eclipse.acceleo.common.nl_de (3.5.0.v20090620043401)
> "org.eclipse.acceleo.common German NLS Support" [Resolved]
> org.eclipse.acceleo.doc (0.8.0.v200906161003) "Acceleo Documentation"
> [Starting]
> org.eclipse.acceleo.engine (0.8.0.v200906161003) "Acceleo evaluation
> engine" [Starting]
> org.eclipse.acceleo.engine.nl_de (3.5.0.v20090620043401)
> "org.eclipse.acceleo.engine German NLS Support" [Resolved]
> org.eclipse.acceleo.examples (0.8.0.v200906161003) "Acceleo Examples"
> [Starting]
> org.eclipse.acceleo.ide.ui (0.8.0.v200906161003) "Acceleo Eclipse User
> Interface" [Active]
> org.eclipse.acceleo.ide.ui.nl_de (3.5.0.v20090620043401)
> "org.eclipse.acceleo.ide.ui German NLS Support" [Resolved]
> org.eclipse.acceleo.model (0.8.0.v200906161003) "Acceleo Model" [Active]
> org.eclipse.acceleo.model.nl_de (3.5.0.v20090620043401)
> "org.eclipse.acceleo.model German NLS Support" [Resolved]
> org.eclipse.acceleo.parser (0.8.0.v200906161003) "Acceleo Parser" [Active]
> org.eclipse.acceleo.parser.nl_de (3.5.0.v20090620043401)
> "org.eclipse.acceleo.parser German NLS Support" [Resolved]
> org.eclipse.acceleo.source (0.8.0.v200906161003) "Acceleo Runtime
> Source" [Resolved]
> org.eclipse.acceleo.ui.capabilities (0.8.0.v200906161003) "Acceleo UI
> capability definitions" [Resolved]
> org.eclipse.ant.core (3.2.100.v20090520) "Ant Build Tool Core" [Starting]
> org.eclipse.ant.core.nl_de (3.5.0.v20090620043401) "org.eclipse.ant.core
> German NLS Support" [Resolved]
> org.eclipse.ant.ui (3.4.0.v20090520) "Ant UI" [Starting]
> org.eclipse.ant.ui.nl_de (3.5.0.v20090620043401) "org.eclipse.ant.ui
> German NLS Support" [Resolved]
> org.eclipse.birt (2.5.0.v20090615) "Business Intelligence and Reporting
> Tools" [Resolved]
> org.eclipse.birt.chart.cshelp (2.5.0.v20090617) "BIRT Chart
> Context-sensitive Help" [Starting]
> org.eclipse.birt.chart.cshelp.nl_de (3.5.0.v20090620043401)
> "org.eclipse.birt.chart.cshelp German NLS Support" [Resolved]
> org.eclipse.birt.chart.device.extension (2.5.0.v20090514) "BIRT Chart
> Device Extension(s)" [Starting]
> org.eclipse.birt.chart.device.extension.nl_de (3.5.0.v20090620043401)
> "org.eclipse.birt.chart.device.extension German NLS Support" [Resolved]
> org.eclipse.birt.chart.device.pdf (2.5.0.v20090326) "BIRT Chart Device
> PDF Extension" [Starting]
> org.eclipse.birt.chart.device.svg (2.5.0.v20090423) "BIRT Chart Device
> SVG Extension" [Starting]
> org.eclipse.birt.chart.device.svg.nl_de (3.5.0.v20090620043401)
> "org.eclipse.birt.chart.device.svg German NLS Support" [Resolved]
> org.eclipse.birt.chart.device.swt (2.5.0.v20090514) "BIRT Chart Device
> SWT Extension" [Active]
> org.eclipse.birt.chart.device.swt.nl_de (3.5.0.v20090620043401)
> "org.eclipse.birt.chart.device.swt German NLS Support" [Resolved]
> org.eclipse.birt.chart.engine (2.5.0.v20090604) "BIRT Chart Engine"
> [Active]
> org.eclipse.birt.chart.engine.extension (2.5.0.v20090527) "BIRT Chart
> Engine Extension" [Active]
> org.eclipse.birt.chart.engine.extension.nl_de (3.5.0.v20090620043401)
> "org.eclipse.birt.chart.engine.extension German NLS Support" [Resolved]
> org.eclipse.birt.chart.engine.nl_de (3.5.0.v20090620043401)
> "org.eclipse.birt.chart.engine German NLS Support" [Resolved]
> org.eclipse.birt.chart.examples (2.5.0.v20090514) "BIRT Chart Examples
> Plug-in" [Starting]
> org.eclipse.birt.chart.examples.nl_de (3.5.0.v20090620043401)
> "org.eclipse.birt.chart.examples German NLS Support" [Resolved]
> org.eclipse.birt.chart.reportitem (2.5.0.v20090514) "BIRT Chart-Report
> Integration" [Active]
> org.eclipse.birt.chart.reportitem.nl_de (3.5.0.v20090620043401)
> "org.eclipse.birt.chart.reportitem German NLS Support" [Resolved]
> org.eclipse.birt.chart.reportitem.ui (2.5.0.v20090531) "BIRT
> Chart-Report UI Integration Plug-in" [Active]
> org.eclipse.birt.chart.reportitem.ui.nl_de (3.5.0.v20090620043401)
> "org.eclipse.birt.chart.reportitem.ui German NLS Support" [Resolved]
> org.eclipse.birt.chart.ui (2.5.0.v20090604) "BIRT Chart Library UI
> Plug-in" [Active]
> org.eclipse.birt.chart.ui.extension (2.5.0.v20090604) "BIRT Chart UI
> Extension" [Active]
> org.eclipse.birt.chart.ui.extension.nl_de (3.5.0.v20090620043401)
> "org.eclipse.birt.chart.ui.extension German NLS Support" [Resolved]
> org.eclipse.birt.chart.ui.nl_de (3.5.0.v20090620043401)
> "org.eclipse.birt.chart.ui German NLS Support" [Resolved]
> org.eclipse.birt.core (2.5.0.v20090601) "BIRT Core Package" [Active]
> org.eclipse.birt.core.nl_de (3.5.0.v20090620043401)
> "org.eclipse.birt.core German NLS Support" [Resolved]
> org.eclipse.birt.core.script.function (2.5.0.v20090611) "Function
> Plug-in" [Active]
> org.eclipse.birt.core.script.function.nl_de (3.5.0.v20090620043401)
> "org.eclipse.birt.core.script.function German NLS Support" [Resolved]
> org.eclipse.birt.core.ui (2.5.0.v20090326) "BIRT Core UI" [Active]
> org.eclipse.birt.core.ui.nl_de (3.5.0.v20090620043401)
> "org.eclipse.birt.core.ui German NLS Support" [Resolved]
> org.eclipse.birt.cshelp (2.5.0.v20090617) "BIRT Context-sensitive Help"
> [Starting]
> org.eclipse.birt.cshelp.nl_de (3.5.0.v20090620043401)
> "org.eclipse.birt.cshelp German NLS Support" [Resolved]
> org.eclipse.birt.data (2.5.0.v20090605) "BIRT Data Engine" [Active]
> org.eclipse.birt.data.aggregation (2.5.0.v20090605) "Build-in
> Aggregation Plug-in" [Starting]
> org.eclipse.birt.data.aggregation.nl_de (3.5.0.v20090620043401)
> "org.eclipse.birt.data.aggregation German NLS Support" [Resolved]
> org.eclipse.birt.data.nl_de (3.5.0.v20090620043401)
> "org.eclipse.birt.data German NLS Support" [Resolved]
> org.eclipse.birt.doc (2.5.0.v20090615) "BIRT Documentation" [Starting]
> org.eclipse.birt.doc.nl_de (3.5.0.v20090620043401) "org.eclipse.birt.doc
> German NLS Support" [Resolved]
> org.eclipse.birt.example (2.5.0.v20090615) "BIRT Example" [Resolved]
> org.eclipse.birt.example.nl_de (3.5.0.v20090620043401)
> "org.eclipse.birt.example German NLS Support" [Resolved]
> org.eclipse.birt.nl_de (3.5.0.v20090620043401) "org.eclipse.birt German
> NLS Support" [Resolved]
> org.eclipse.birt.report.data.adapter (2.5.0.v20090605) "BIRT Data
> Adapter" [Active]
> org.eclipse.birt.report.data.adapter.nl_de (3.5.0.v20090620043401)
> "org.eclipse.birt.report.data.adapter German NLS Support" [Resolved]
> org.eclipse.birt.report.data.oda.jdbc (2.5.0.v20090605) "BIRT ODA-JDBC
> Bridge Driver" [Starting]
> org.eclipse.birt.report.data.oda.jdbc.dbprofile (2.5.0.v20090605) "JDBC
> Databases Profile Data Source ODA Runtime Driver" [Starting]
> org.eclipse.birt.report.data.oda.jdbc.dbprofile.nl_de
> (3.5.0.v20090620043401) "org.eclipse.birt.report.data.oda.jdbc.dbprofile
> German NLS Support" [Resolved]
> org.eclipse.birt.report.data.oda.jdbc.dbprofile.sampledb
> (2.5.0.v20090605) "BIRT Sample Database Connection Profile Plug-in"
> [Starting]
> org.eclipse.birt.report.data.oda.jdbc.dbprofile.sampledb.nl_ de
> (3.5.0.v20090620043401)
> "org.eclipse.birt.report.data.oda.jdbc.dbprofile.sampledb German NLS
> Support" [Resolved]
> org.eclipse.birt.report.data.oda.jdbc.dbprofile.ui (2.5.0.v20090605)
> "JDBC Databases Profile Data Source ODA Designer" [Starting]
> org.eclipse.birt.report.data.oda.jdbc.dbprofile.ui.nl_de
> (3.5.0.v20090620043401)
> "org.eclipse.birt.report.data.oda.jdbc.dbprofile.ui German NLS Support"
> [Resolved]
> org.eclipse.birt.report.data.oda.jdbc.nl_de (3.5.0.v20090620043401)
> "org.eclipse.birt.report.data.oda.jdbc German NLS Support" [Resolved]
> org.eclipse.birt.report.data.oda.jdbc.ui (2.5.0.v20090605) "BIRT JDBC UI
> Plug-in" [Starting]
> org.eclipse.birt.report.data.oda.jdbc.ui.nl_de (3.5.0.v20090620043401)
> "org.eclipse.birt.report.data.oda.jdbc.ui German NLS Support" [Resolved]
> org.eclipse.birt.report.data.oda.sampledb (2.5.0.v20090605) "BIRT Sample
> Database" [Starting]
> org.eclipse.birt.report.data.oda.sampledb.nl_de (3.5.0.v20090620043401)
> "org.eclipse.birt.report.data.oda.sampledb German NLS Support" [Resolved]
> org.eclipse.birt.report.data.oda.sampledb.ui (2.5.0.v20090605) "BIRT
> Sample Database UI Plug-in" [Starting]
> org.eclipse.birt.report.data.oda.sampledb.ui.nl_de
> (3.5.0.v20090620043401) "org.eclipse.birt.report.data.oda.sampledb.ui
> German NLS Support" [Resolved]
> org.eclipse.birt.report.data.oda.xml (2.5.0.v20090605) "BIRT ODA-XML
> Driver" [Starting]
> org.eclipse.birt.report.data.oda.xml.nl_de (3.5.0.v20090620043401)
> "org.eclipse.birt.report.data.oda.xml German NLS Support" [Resolved]
> org.eclipse.birt.report.data.oda.xml.ui (2.5.0.v20090615) "BIRT ODA XML
> Designer" [Starting]
> org.eclipse.birt.report.data.oda.xml.ui.nl_de (3.5.0.v20090620043401)
> "org.eclipse.birt.report.data.oda.xml.ui German NLS Support" [Resolved]
> org.eclipse.birt.report.debug.core (2.5.0.v20090603) "BIRT Debug Core
> Plug-in" [Resolved]
> org.eclipse.birt.report.debug.core.nl_de (3.5.0.v20090620043401)
> "
Re: Trigger problem with BIRT 2.5.0 [message #481039 is a reply to message #480802] Wed, 19 August 2009 11:46 Go to previous messageGo to next message
farideh  is currently offline farideh Friend
Messages: 11
Registered: July 2009
Junior Member
Yes, i did it and could reproduce the issue.

farideh
Re: Trigger problem with BIRT 2.5.0 [message #669284 is a reply to message #481039] Mon, 09 May 2011 18:19 Go to previous message
Mark Victory is currently offline Mark VictoryFriend
Messages: 133
Registered: July 2009
Senior Member
Hi, Did you ever get a resolution for this problem?

We are seeing similar problems.
They only occur when we have more than one BIRT report open in a single page of our application. The problem seems to be that the map ids not being unique.
Previous Topic:Aggregations in crosstabs
Next Topic:Joining on a multivalue string
Goto Forum:
  


Current Time: Thu Mar 28 10:13:15 GMT 2024

Powered by FUDForum. Page generated in 0.03996 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top