Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
309 views

Numerical instability FFTW <> Matlab

I am trying to numerically solve the Swift-Hohenberg equation http://en.wikipedia.org/wiki/Swift%E2%80%93Hohenberg_equation using a pseudo-spectral scheme, where the linear terms are treated ...
4
votes
2answers
358 views

Complete example for Eclipse RCP 3.6.2/P2/Junit tests

Does anyone know of a good complete example (source, scripts, jobs) that covers all the following? building an Eclipse RCP product with many features generating a P2 repository running JUnit tests ...
4
votes
1answer
534 views

Fluid flow, heat transfer and Python

full EDIT: I will give some more information about the whole problem. The project is in early stage and my question is actually only about a narrow portion of the thing. the final goal: I am ...
4
votes
4answers
2k views

Headless build of eclipse features - PDE Tools or Buckminster?

I am trying to set up a headless build for a big eclipse feature, containing other features and plugins. As some needed plugins are generated using GMF and EMF, the build workflow must be something ...
3
votes
1answer
65 views

Is the PDE's “Update Site Wizard” still the right way to create an update site?

The point of this question is to get verification from someone knowledgeable of the current state of affairs with the Eclipse install system. I have an Eclipse plugin and I want to make an update ...
3
votes
2answers
254 views

How can I safely use an Eclipse p2 profile?

I encounter some problems when I try to update Eclipse plug-ins at the start up of Eclipse. My program pops up the dialog at Help -> Check for Updates at the start up of Eclipse. But, when the user ...
3
votes
2answers
418 views

How do I install eclipse PDE?

I have already installed the eclipse IDE for Java developers (Helios Service Release 2) How do I now install the Plug-in Developers Environment (PDE) on top of that? I thought that it should be ...
3
votes
1answer
107 views

Difference between IWorkbenchWindow and IWorbenchPage in Eclipse SDK

i still dont get what the differnce is between the two. the eclipse docs just say that a window can have many pages, but when does that happen. under what circumstances is the number of pages more ...
3
votes
2answers
181 views

Eclipse PDE: What is a “target platform”?

When you work with Eclipse PDE (Plug-in development environment), there is the term "target platform." What does that mean exactly?
3
votes
3answers
157 views

Speeding up PDE edit-compile-debug cycle

Are there any low-hanging fruit regarding some more efficient way to run and test Eclipse-plugins (within the PDE)? Besides slimming down the Eclipse-configuration, which has already been done. ...
2
votes
1answer
295 views

Eclipse Plugin: how to get the path to the currently selected project

I am writing an Eclipse plugin that will display a menu item in the context menu for a Java Project. I have written the plugin.xml as follows: <plugin> <extension ...
2
votes
2answers
104 views

Fast algorithm for boundary value problem

I am looking for the fastest way to solve the following problem: Given some volume of lattice points in a 3D grid, some points b_i (the boundary) satisfy f(b_i)=0, while another point a_0 satisfies ...
2
votes
1answer
535 views

PDE Headless Build (Feature-based) and Missing Required Plug-ins

When attempting to perform a PDE headless build, I am finding the eclipse.buildScript step to display the following: [java] generateScript: [java] [eclipse.buildScript] Some inter-plug-in ...
2
votes
3answers
449 views

Build Windows RCP Application on Unix Machine

We're trying to do an Eclipse PDE build for a RCP Application via Hudson/Jenkins. We were doing this so far successfully on a Windows machine (Hudson running on Windows Server 2003). We have decided ...
2
votes
2answers
274 views

Assigning to multiple sub-matrices of a matrix simultaneously. Possible optimization by vectorized indices

Is there a clever way to vectorize a for-loop which assigns elements to submatrices of a matrix? Initially, I had two for-loops: U=zeros(6*(M-2),M-2); for k=2:M-3 i=(k-1)*6+1; for ...
2
votes
1answer
587 views

How to refresh resource from Eclipse Plugin?

I have changed some resource, when i click on it in Eclipse i get info "Resource is out of sync", how can I refresh it? i tried org.eclipse.core.resources.IResource.touch(IProgressMonitor), but it ...
2
votes
0answers
86 views

How to share a common customBuildCallbacks script between multiple Eclipse plug-ins

I am trying to avoid duplicating customBuildCallbacks.xml for all my plug-ins, when called from either PDE's headless build or the Eclipse GUI. I have in customBuildCallbacks.xml steps to generate ...
2
votes
3answers
978 views

Target Platform for PDE Headless build does not work

I am currently trying to get my headless pde-build working but I am stuck on a point where I do not know how to continue. The problem is how to define the related target platform to compile the ...
2
votes
2answers
290 views

Using PDE build, p2 and AdvancedInstaller together

I am building an Eclipse RCP application with the command-line version of PDE build in Eclipse 3.5.1. Then I use AdvancedInstaller to create the installer for the RCP product. I think the context ...
1
vote
2answers
28 views

How can I add the functionality of User Input to my eclipse plugin?

I am developing a plugin in eclipse which can generate a text file (based on user input) and can trigger a perl script. I can easily make a simple plugin (like Hello World) and I can add new menus and ...
1
vote
1answer
58 views

Headless PDE build successful but no file

I've created a view plug-in for Eclipse. I can export the jar from the project and it's working quite good. I'm trying to create an Ant build script to automate it. I've created two Ant build ...
1
vote
1answer
42 views

pluginPath and dependencies from remote p2 repositories

In my pde build I'm using pluginPath property to resolve dependencies from local p2 repositories for example: ...
1
vote
1answer
37 views

Popup window blocks test in Eclipse

I'm running the pde test in ant build with parameter: -application org.eclipse.pde.junit.runtime.uitestapplication. When the eclipse instance is started while running the test, it pops up a dialog ...
1
vote
1answer
217 views

Solving the biharmonic equation in mathematica

I am attempting to solve the linear biharmonic equation in mathematica using DSolve. I think this issue is not just limited to the biharmonic equation but MATHEMATICA just spits out the equation when ...
1
vote
2answers
333 views

How do I install eclipse PDE on Indigo (3.7)

I just re-installed eclipse, using the latest version (Indigo / 3.7), and I run into the exact same problem as I did half a year ago. I installed the eclipse java IDE, now how do I get the plugin ...
1
vote
0answers
110 views

Exporting a plugin from Eclipse: JDTCompilerAdapter not found

I'm trying to update an old eclipse plugin to work on the more recent version of Eclipse. Everything compiles fine, but when I try to export the plugin, I get the following error: Class not found: ...
1
vote
1answer
64 views

Eclipse process launch

How can I get the process of a launched java application inside of a plugin? I am using: DebugUITools.launch(); to launch the application. I have tried to use: IProcess cur = ...
1
vote
2answers
158 views

Eclipse Plugin: Creating a dynamic menu and corresponding handler?

I am trying to write what I think is a very simple Eclipse plugin, but I am really struggling to find my way around as I have never worked with the PDE before. Basically what I am trying to do is add ...
1
vote
1answer
149 views

Headless PDE Build and Java Compiler Compliance

Hello fellow Eclipse PDE Builders. I am looking on SO to see if anyone else has yet to encounter the same problem that I am currently having. My problem is that I am looking to update a ...
1
vote
1answer
91 views

High order PDEs

I'm trying to solve a 6th-order nonlinear PDE (1D) with fixed boundary values (extended Fisher-Kolmogorov - EFK). After failing with FTCS, next attempt is MoL (either central in space or FEM) using ...
1
vote
0answers
49 views

Implementing quick fixes list in eclipse

I develop plugin for eclipse, which marks some location in files. Also, user must have ability to do some actions with this markers, something like this list of actions in spellchecker: ...
1
vote
1answer
356 views

Solving the 1D heat equation using FFTW in C++

I recently just picked up programming again for school and I am running across an issue with my code that involves the Fast Fourier Transform package FFTW. In my code, I start with an initial ...
1
vote
0answers
80 views

PDE Build - fetching features and plug-ins specified in a map file from SVN with different preTagPath values

When attempting to fetch features and plug-ins from an SVN repository, I am in need of pulling them from different sub-paths. The map file format being followed is as follows: ...
1
vote
2answers
605 views

Eclipse p2 alternative for custom install handlers

Before p2, one could write a custom install handler with a feature that was executed to do any 'custom' task during installation. I see that with p2 the custom install handler is no longer supported. ...
1
vote
1answer
58 views

Adding licensing support for Eclipse PDE

I have built an eclipse plugin which basically makes writing Java GUI applications as easy as using a 4GL programming language (Oracle Forms, Visual Basic etc). The plugin generates no GUI code but ...
1
vote
1answer
108 views

How to read an installed feature (eclipse PDE)?

Is it possible to read a feature like its possible to read a plugin use the eclipse PDE API? Currently I read plugins using: Bundle[] bundles = Platform.getBundles(name, version); if ...
1
vote
4answers
1k views

Eclipse PDE and log4j.properties?

I have created an eclipse PDE project and have added log4j as a dependency using the slf4j-api and slf4j.log4j12 bundles. In a class I have created the logger: import org.slf4j.Logger; import ...
1
vote
1answer
53 views

Feedback from eclipse plugin?

I have written an application that I have wrapped into an eclipse plugin (PDE). When I run the plugin from eclipse it either goes well or it fails. If it fails I don't get any feedback on where it ...
1
vote
1answer
176 views

How to use Target Definition in Product Configuration?

I have a question related to Eclipse PDE development. I'm using target definitions to manage my target platform, and would like to include all plugins from one particular target definition in one ...
1
vote
1answer
134 views

XML schema for Eclipse target definition files

Where can I find the XML schema and/or documentation for Eclipse target definition files (*.target)?
1
vote
1answer
461 views

How do I get a reference to the current project in an Eclipse plugin?

I'm creating an editor for Eclipse. Right now the editor fires up with the user creates a new file with the appropriate extension. My question is, how can I get a reference to the project in which the ...
1
vote
2answers
196 views

Partial differential equations & lineralization?

I'm implementing a series of Partial Differential Equations solver / numerical algorithms. I'm trying to figure out what algorithms can be easily discretized + solved as linear systems. Anyone have ...
1
vote
3answers
402 views

Is there a headless way to import projects and refresh the workspace?

Still trying to set up an headless build for a big university project (RCP product). Every Eclipse user knows the following manual functionality: "File --> Import --> Existing projects into ...
1
vote
2answers
349 views

Is there a overview of all buckminster commands for the hudson buckminster plugin?

I am trying to set up a continous build of our PDE project using hudson + buckminster. The problem i got is, i can't find any list/documentation of the available commands. I think it should be the ...
0
votes
0answers
23 views

Simulink S-function for temperature variation

I need to write an S-function to simulate the temperature variation problem in a heated metal rod. The equation that governs this process is the heat equation (a PDE), but I don't know how to write it ...
0
votes
2answers
34 views

Required plug-in 'org.eclipse.pde.junit.runtime' could not be found

I'm working with Eclipse Indigo and need to use Junit PDE to test my plugin functionality. I installed Junit, and these two plugins: ...
0
votes
1answer
16 views

Eclipse PDE: How to change class implementation by creating an extension point?

I have an Eclipse Plugin which contains a certain method foo() in class X. Class X { private void foo(){ ... } } How can I create an extension point which allows other plugins to replace the ...
0
votes
1answer
35 views

How to implement a widget similar to the Override/Implement provided by Eclipse?

I want to perform some action and show a similar window to the Override Implemet window provided by Eclipse. I found this post but I'm still struggling with it. I created the action: ...
0
votes
0answers
46 views

Showing JFrame in the center of Eclipse instance

I'm developing an Eclipse Plug-in. There is one JFrame popup which user can choose settings. My problem is to show this window in the center of Eclipse, as Eclipse does when you want to quit, it ...
0
votes
2answers
48 views

ajdt.pdebuild.scripts not set during AJDT headless PDE build

I have an eclipse rcp application being developed in eclipse 3.5. I am able to successfully execute pde headless build in ant (from command shell outside eclipse) via the following target entry: ...

1 2