Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] Storing project-persistent properties in the .project/. cdtproject file

You can use ICDescriptor interface for that. It is relatively low level interface, but works fine.

ICDescriptor descriptor = CCorePlugin.getDefault().getCProjectDescription(project);


cebarne2@xxxxxxxxxxxxxxxxxxx wrote:



Are there any current or planned API's to allow plug-in properties to be
stored in the .cdtproject file?  As an enterprise, we devlope several
local-use plug-ins that need to store properties persistent across all
people who use the project.  Currently, persistent properties are only
valid for the user's workspace, not for all users of the project.  We
would
like any user that imports the project to inherit a project-default set
of
properties/preferences.

I understand we can create our own .xxproperties resource, but it would
seem much cleaner to piggy-back on a resource that is already there.

Is this possible?  Will this be possible?

Thank You,

Chad Barnes
Enterprise Tool Integration
Rockwell Collins, Inc.

_______________________________________________
cdt-dev mailing list
cdt-dev@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/cdt-dev



Back to the top