Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-dev] How to get "product" name from RCP/NONRCP application

Chethan,

Please post questions about the use of RCP to the eclipse.platform.rcp 
newsgroup (not the *-dev mailing lists).
To get the product name:
IProduct product = Platform.getProduct();
String productName = product == null ? "" : product.getName();

Nick




"Chethan Rn" <Chethan.Rn@xxxxxxxxxx> 
Sent by: platform-dev-bounces@xxxxxxxxxxx
11/09/2005 01:45 AM
Please respond to
"Eclipse platform general developers list."


To
platform-dev@xxxxxxxxxxx
cc

Subject
[platform-dev] How to get "product" name from RCP/NONRCP application






Hello,
            Is there a way to get ?product? name from RCP/NON-RCP 
application. Product name is one of the options in the ?PROP_COMMANDS? 
system property.
System.getProperty(PROP_COMMANDS);. 
 
 
Is there a standard way of getting the product name from WorkBench?
 
Thanks
Chethan
_______________
Siebel
IT'S ALL ABOUT THE CUSTOMER
Visit www.siebel.com

This e-mail message is for the sole use of the intended recipient(s) and 
contains confidential and/or privileged information belonging to Siebel 
Systems, Inc. or its customers or partners. Any unauthorized review, use, 
copying, disclosure or distribution of this message is strictly 
prohibited. If you are not an intended recipient of this message, please 
contact the sender by reply e-mail and destroy all soft and hard copies of 
the message and any attachments. Thank you for your cooperation.
_______________________________________________
platform-dev mailing list
platform-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/platform-dev




Back to the top