Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [bpel-dev] Re: Extend Bpel Designer's Property View

hey graziella,

just took a very quick look:

<propertyCategory category="qos"/>                        "qos" lowercase

<propertyTab                                                "QoS" mixedcase
label="Quality of Service"
category="QoS"
id="org.eclipse.bpel.test.tabs.qos"/>

that might be an issue...


Mit freundlichen Grüßen / Kind regards

Michael Illiger

Software Developer - BPEL Editor / WID
IBM Software Group, Application and Integration Middleware Software
WSS Business Process Solutions Development 1

Phone: +49-7031-16-1273  IBM Deutschland
E-Mail: milliger@xxxxxxxxxx  Schoenaicher Str. 220
 71032 Boeblingen
 Germany

IBM Deutschland Research & Development GmbH / Vorsitzender des Aufsichtsrats: Martin Jetter
Geschäftsführung: Dirk Wittkopp
Sitz der Gesellschaft: Böblingen / Registergericht: Amtsgericht Stuttgart, HRB 243294




From: "Graziella Cipolletti" <graziellacipolletti@xxxxxxxxx>
To: <bpel-dev@xxxxxxxxxxx>
Date: 16.12.2009 14:48
Subject: [bpel-dev] Re: Extend Bpel Designer's Property View
Sent by: bpel-dev-bounces@xxxxxxxxxxx





Hi Michael!
 
I followed the example of the plugin.xml org.eclipse.bpel.ui.
I enclose my plugin.xml ..
 
"
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>
<extension
point="org.eclipse.ui.views.properties.tabbed.propertyContributor">
<propertyContributor
contributorId="org.eclipse.bpel.ui.bpeleditor"
typeMapper="org.eclipse.bpel.test.ui.properties.TypeMapper"
labelProvider="org.eclipse.bpel.test.ui.properties.PropertiesLabelProvider">
<propertyCategory category="qos"/>
</propertyContributor>
</extension>
<extension point="org.eclipse.ui.views.properties.tabbed.propertyTabs">
<propertyTabs contributorId="org.eclipse.bpel.ui.bpeleditor">
<propertyTab
label="Quality of Service"
category="QoS"
id="org.eclipse.bpel.test.tabs.qos"/>
</propertyTabs>
</extension>
<extension point="org.eclipse.ui.views.properties.tabbed.propertySections">
<propertySections contributorId="org.eclipse.bpel.ui.bpeleditor">
<propertySection
tab="org.eclipse.bpel.test.tabs.qos"
class="org.eclipse.bpel.test.ui.impl.NameSection"
id="org.eclipse.bpel.test.sections.Name">
<input type="org.eclipse.bpel.model.Activity"/>
<input type="org.eclipse.wst.wsdl.ExtensibilityElement"/>
<input type="org.eclipse.bpel.model.Variable"/>
<input type="org.eclipse.bpel.model.CorrelationSet"/>
<input type="org.eclipse.bpel.model.PartnerLink"/>
<input type="org.eclipse.bpel.model.Process"/>
<input type="org.eclipse.bpel.model.Link"/>
<input type="org.eclipse.bpel.model.MessageExchange"/>
</propertySection>
</propertySections>
</extension>
</plugin>
"
 
but when I run my plugin I get the following errors.
 
 
"
!SESSION 2009-12-16 14:27:45.159 -----------------------------------------------
eclipse.buildId=M20090211-1700
java.version=1.6.0_07
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=it_IT
Framework arguments:  -product org.eclipse.platform.ide
Command-line arguments:  -product org.eclipse.platform.ide -data D:\BPELworkspace2 -dev
file:D:/workspaceBPEL/.metadata/.plugins/org.eclipse.pde.core/BPEL_start/dev.properties -os win32 -ws win32 -arch x86
 
!ENTRY org.eclipse.ui.workbench.texteditor 4 0 2009-12-16 14:27:48.333
!MESSAGE The 'org.eclipse.wst.jsdt.web.ui.internal.hyperlink.script.JSPJavaHyperlinkDetector' extension from plug-in 'org.eclipse.wst.jsdt.web.ui' to the 'org.eclipse.ui.workbench.texteditor.hyperlinkDetectors' extension point will be ignored because it contains invalid attributes.

 
!ENTRY org.eclipse.ui.workbench.texteditor 4 0 2009-12-16 14:27:48.334
!MESSAGE The 'org.eclipse.wst.jsdt.web.ui.internal.hyperlink.script.event.JSPJavaHyperlinkDetector' extension from plug-in 'org.eclipse.wst.jsdt.web.ui' to the 'org.eclipse.ui.workbench.texteditor.hyperlinkDetectors' extension point will be ignored because it contains invalid attributes.

 
!ENTRY org.eclipse.bpel.test 4 3 2009-12-16 14:28:42.047
!MESSAGE Tab in org.eclipse.bpel.test declares non-existing category QoS.

 
!ENTRY org.eclipse.ui.views.properties.tabbed 4 1 2009-12-16 14:28:42.051
!MESSAGE Section org.eclipse.bpel.test.sections.Name declares non-existing tab org.eclipse.bpel.test.tabs.qos.
"

 

What is wrong?

Where should I declare my category QoS and my tab org.eclipse.bpel.test.tabs.qos?  
 
Thank you very much.
Graziella
----- Original Message -----
From: Graziella Cipolletti
To: bpel-dev@xxxxxxxxxxx
Sent: Friday, December 11, 2009 11:32 AM
Subject: Extend Bpel Designer's Property View

Hi to everybody!
 
I have to extend the BPEL Designer by adding a new tab 'QOS' to
Property view of BPEL actions. How can I do?

Regards,
Graziella
_______________________________________________
bpel-dev mailing list
bpel-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/bpel-dev



Back to the top