Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Mylyn » Create a new element in a context
Create a new element in a context [message #668770] Sat, 07 May 2011 09:49
Manuel Doninger is currently offline Manuel DoningerFriend
Messages: 119
Registered: October 2010
Senior Member
Hi,
how do i manually create and assign a new element to an active context, if it is not a file in the workspace (like the bookmarks in Tasktop Pro)? The reason is, i want to store some task related configurations for EGit in the task context, but so far i couldn't find the right thing in the Mylyn API.

I thought about something like

List<InteractionContextElement> nodes = new ArrayList<InteractionContextElement>();
InteractionContextElement node = new InteractionContextElement(
"meta/setting", "egitbranchsetting", (InteractionContext) activeContext); //$NON-NLS-1$ //$NON-NLS-2$
nodes.add(node);
IInteractionElement newElement = new CompositeContextElement(
"egitbranchsetting", nodes, activeContext.getScaling()); //$NON-NLS-1$
activeContext.getAllElements().add(newElement);

but i don't know, if this is right.

The configuration i want to store would be a list of Strings representing Git repositories, and a String representing a branch in that repositories.
Previous Topic:Create a new element in a context?
Next Topic:From Eclipse Help to Mylin Wikitext
Goto Forum:
  


Current Time: Sat Apr 27 04:13:13 GMT 2024

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

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

Back to the top