Skip to main content



      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 05:49
Eclipse UserFriend
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: Wed Jun 18 10:59:32 EDT 2025

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

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

Back to the top