I am using Context Mapper to generate context maps in the Eclipse IDE. To visualize these maps, context mapper uses Graphviz and PlantUML to create images in a .puml file in a src-gen folder inside my Eclipse project.
I am currently trying to find a way to export these images from Eclipse and the .puml file format into a .png format that can be used inside my research report. The Context Mapper documentation only refers to Markdown and pandoc, but does not indicate any ways to get there.
Any ideas how to do so?
Answered. Eclipse allows to export .png image files by simply right-clicking on the .puml files. Solved.
Related
I would like to open a .chm file in Eclipse. But it does not support these files. If I wanted a workaround, how should I go about it?
I have looked into writing plug-ins to do so. The only way I would be able to view .chm as an Eclipse Help Plug-in would be to convert .chm to DITA and then DITA to Eclipse help files. But there's no clear cut way to do this. There isn't much help online either. Any suggestions?
I need an automate-able way to do this. I will have a .chm file (for documentation of the source code generated by Doxygen) pushed to a repo that someone will pull and open up in Eclipse along with the code. They should be able to use the search functionalities provided in a chm file. A normal HTML page does not provide these.
I am a beginner in Neo4j. I need to load a .csv file and apply the Louvain algorithm to the dataset in the NetBeans. I added graph-algorithms-algo-3.3.0.0.jar in my project library. Should I add other files? What code do i need to load this file?please help me. Thankful.
I am attempting to design an Eclipse plugin. It is going to be an editor and project creator. For the project creator wizard, I want to know if it were possible to have the wizard create a standard folder (obviously possible), and then also take a zip file from the user and expand its contents into the standard created folder? The contents would then be modified by the custom editor I am creating.
thanks!
I am working on a web project in eclipse. I am looking for some way to find references to
a particular file (.js,.css,.html.....).
I want to know that where this particular file is used.
the same functionality ctrl+shift+g
but unfortunately this shortcut only works for keywords(like java classes or methods)
Is there any plugin available for doing this in eclipse ?
Thanks !
How about the normal search dialog, Ctrl+H? Enter the filename as the text.
It's 'easier' for the Java search to work, as Eclipse knows where to look (.java files and .class files) and what to look for (occurences of the class in the Abstract Syntax Tree or bytecode).
For a generic file search that has 'file format knowledge', it needs to know how to parse each file it's looking in.
So the most general way of doing this is a simple text search using Ctrl+H.
I'm developing an Eclipse Plug-in.
I need to programmatically get both filepath and filename of the selected/active file in the eclipse editor.
Also need to programmatically add an existing file (located outside the project) to the project and then open it on the editor.
I'm a totally beginner with Eclipse, so complete solution would be appreciated.
You question is quite general, but this should clear things up a bit:
Eclipse Plugin Development Tutorial
About adding a file to the project, you have to read the documentation and find where eclipse handles projects. I think that if you have a reference to the project it should be easy.
Hope it helps =)
Your editor is most likely inheriting from IEditorPart, so you should be able to call getEditorInput(), which then may or may not turn out to be a FileEditorInput, for example. From there, you can get at the underlying details of the file.
For your second problem, you can use IProject.create() and then e.g. do an IFile.createLink() and use a local filesystem path, or copy the file using IFile.appendContents().
Have you tried the solution proposed in http://www.eclipse.org/forums/index.php/mv/msg/97927/300308/#msg_300308?