Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] How to find out actual jar file name for some classes

They are both in org.eclipse.cdt.core. You can find which bundle a file is in by checking which directory it is in in git.

However, most classes in CDT need to be run with OSGi and then OSGi can help handle all your build and runtime dependencies. So you could be writing a new bundle and then connecting that way to CDT classes. You can have command line applications, having a bundle does not imply on its own that you need a GUI.

Jonah 




On Fri., Nov. 22, 2019, 04:48 Ming Cheng, <chengm349@xxxxxxxxxxx> wrote:

Is there a check list to find out a class’s jar file name?

 

Sent from Mail for Windows 10

 


From: cdt-dev-bounces@xxxxxxxxxxx <cdt-dev-bounces@xxxxxxxxxxx> on behalf of Ming Cheng <chengm349@xxxxxxxxxxx>
Sent: Friday, November 22, 2019 5:41:10 PM
To: CDT General developers list. <cdt-dev@xxxxxxxxxxx>
Subject: [cdt-dev] How to find out actual jar file name for some classes
 

Hi,

 

What’s the actual jar file name containing the following 2 classes?

 

import org.eclipse.cdt.internal.core.model.InternalCoreModelUtil;

import org.eclipse.cdt.internal.core.pdom.indexer.IndexerPreferences;

 

 

Thanks.

Sent from Mail for Windows 10

 

 

_______________________________________________
cdt-dev mailing list
cdt-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://www.eclipse.org/mailman/listinfo/cdt-dev

Back to the top