Nandha

- Total activity 448
- Last activity
- Member since
- Following 27 users
- Followed by 0 users
- Votes 365
- Subscriptions 41
-
Created Customizing MPS's default typesystem error message for unresolved reference
If a referred node is deleted, MPS throws a typesystem error as "Unresolved reference:<name>". Is it possible to customize the error message text in the typesystem? or is it possible to hide this ... -
Created What is the alternate method for getParameterObject() of SubstituteAction?
The method getParameterObject() in SubstituteAction is deprecated. There is no alternative method suggested in the source code of SubstituteAction. Is there any other method with similar functional... -
Edited How to toggle(Turn Off) the Info, Warning actions button in message handler from code?
I got the message handler using the following code. MessagesViewTool tool = mpsProject.getComponent(MessagesViewTool.class);if (tool != null) { handler = tool.newHandler("Make", true);} I want to ... -
Edited Actions: Right click a PackageNode in tree
I have an MPS action which has TreeNodes as its action context parameter. Need to invoke this action by Right clicking a PackageNode of tree. ( For ex. Right click a virtual package in Project pan... -
Edited Make the NodeTestCase to wait for the completion of EDT threads
Consider I have a java class which uses EDT for processing some nodes.Now when i use this method inside NodeTestCase as, The test does not wait for the completion of the other EDT threads. So the t... -
Edited Preventing the instantiation of root concept by Right click model -> New action
I have a concept (say MyConcept ) whose instance can be root is set as true. After importing this language to a model, we are able to right click the model and we can select New->x.y.LangName-> M... -
Edited Substitutemenus are not available when a node is attributed
I have a language for representing classroom of a school. Here when we press Ctrl+Space in IClassContent, Substitue menus are available as shown in the above image.Now i have an attribute concept,... -
Edited Getting Project inside Intention's execute section [without using IOperationContext since it is deprecated]
I am trying to get hold of Project object inside execute section of an Intention. Currently I am using editorContext.getOperationContext().getProject(); for getting project. But IOperationContext i... -
Edited Disabling code completion menu based on some flag using Substitute menu and also retrieving default code-completion behavior
1. Consider I have a root concept ClassRoom whose contents are IClassContent[0...n] (an interface). 2. Two classes namely Student & Board implement IClassContent. Now in code completion if we pres... -
Edited Create and access a single Preference Component which is common for all projects
Hi Team, I have created a settings page in Preference component.. let's say this has a text field. Now i want this to be a global settings means that the settings information is the same for all t...