Hi,
How can I create a RCP application, which looks exactly like the Eclipse IDE with all menus, views, dialogs...?
Here is one example: http://richclientplatform.blogspot.com/2007/12/oil-and-gas-industry-using-eclipse.html
I followed Lars Vogel's tutorial to create a simple RCP application: http://www.vogella.de/articles/EclipseRCP/a...
If I have a TreeViewer or Table,or I have some buttons,labels which contain different text,pic and so on.
Now,I want to export these to a SVG pic.
Does anyone know about this?
Many Thanks!
...
I remember there's a charting/graph tool/plugin in some editor (maybe in vim or eclipse) so that we can plot some chart in pure text as follows:
+-----------+ +-----------+
| Class A | ------------> | Class B |
+-----------+ +-----------+
Anyone knows what that plugin is? Thanks!
...
How can I get support for jumping to Moose methods using Eclipse with the EPIC plugin? (Using F3)
They're declared like
class Point {
method getDistance { ... }
}
...
Which Solution is the best, to work with remote files via SFTP in Eclipse and to get backupfiles (remote) on every save?
I've installed RSE, but I think it won't create backup files.
Thank you :-)
...
I'm working on one application.
I am using Eclipse php Helios IDE for developing php application.
I wanted to know below things related to this IDE, so that i can implement PHP application instantly as well as very efficiently :
1) How to do remote debugging using Eclipse PHP Helios IDE
2) What is the pros and cons of xdebug and zend...
How should I organize my JavaScript code to be visible well in deep in the Eclipse JSDT's Outline View?
For example, if I have a JS file containing the following content, Outline shows the one top level function only:
function topLevel() {
var local1 = 1;
var local2 = 2;
function local() {};
}
...
The Listitem would not be retrieved from the db. It is passed over from another class.
...
Hi ..
I am using GWT1.5 ,EJB and glass fish server(Eclipse IDE) i have created war file for gwt and jar file for ejb but i dont know how to create ear file.please anyone tell me in step by step ...
...
I'm using the CheckStyle plugin for Eclipse.
It's great at finding things I didn't intend 99% of the time, but the 1% of the time I actually did intent to knowingly violate a rule, I would like to let CheckStyle know it need not concern itself with flagging a warning.
Example: the Missing a Javadoc comment rule. Most of the time I wan...
I am getting following error, when I run the demo JSF application on the console
[SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:JSFTut' did not find a matching property.
...
Hello friends,
In Eclipse (3.4+ upwards), I was searching for shortcut which converts the if {} else {} condition block to the java ternary operator[or the ?: operator ]
can you guide me, how to do i do this ?
Thank you!
...
Using the Visual Editor in Eclipse I started a Swing UI containing a table (JTable) with 2 columns (JTableColumn). Adding data to the table this way:
final DefaultTableModel model = (DefaultTableModel) this.jTable.getModel();
model.addRow(new Object[] {"Column 1", "Column 2"});
generated an ArrayIndexOutOfBoundsException. I solved thi...
The first time launching Source/Sort Members Eclipse asks whether sort fields/members as well and allows to make "Do not ask again ..." choice.
I've checked "Do not ask again ..." combo and as as the result Eclipse does not ask me any more.
The question is: how to reset this option to initial state, thus making Eclipse to ask me every ...
After I configure weblogic in eclipse, streted the weblogic server, then the given error was came
C:\bea\weblogic81\samples\domains\examples\applications\mydomain\config.xml not found
No config.xml was found.
Would you like the server to create a default configuration and boot? (y/n): y
For confirmation, please re-enter password ...
I have used Subclipse, a Subversion plugin for Eclipse, in the past and it has always just worked on install but not now. I added it to my Eclipse Helios and it is not identifying any of my files that are under source control as such. It gives the message "Resource not managed" when I inspect a file I know is managed in the SVN Propertie...
Hello,
Something bother me a lot...
On a big project with many dependencies, some of them are set as SNAPSHOT in Maven2.
The matter is that it seems i can't get the sources through Eclipse without loading the project or fixing the dependency to the last release.
For debugging, it's really annoying me...
EDIT
This is what i get in ...
Hi All,
I'm trying to get autocomplete working in eclipse for scala development. I'm trying to reference a java class from a Scala class, and the autocomplete feature never finds it.
for example take this scala class:
object Main {
def main(args: Array[String]) {
val btn = new JButton
}
}
When I hit ctrl+space at the end of typ...
Hi,
I am just starting with GWT. I use Eclipse and have installed the GWT plugin.
I have followed the directions here http://stackoverflow.com/questions/1894003/maven-gwt-2-0-and-eclipse to set up a GWT project using the gwt-maven-plugin. When I run the Maven goals gwt:compile gwt:run, GWT Development Mode is launched and I can copy...
Hi,
i've been given the task of creating a ksh script which runs one Java program multiple times and another once. The idea is that the multiple runs test the ability of the single program to handle multiple threads.
The issue i am having is that i want to use a .Launch file generated by Eclipse to specify the run time dependencies of ...