What I have known of are eclipse , netbeans and JavaSideKick for jedit. Are there other alternatives?
Please let me know cause it really helps me! Thanks a lot!
Using XScalaWT, this compiled under Scala 2.7:
class NodeView(parent: Composite) extends Composite(parent) {
var nodeName: Label = null
this.contains(
label(
nodeName = _
)
)
}
With 2.8.0 RC1, I get this error:
type mismatch; found : main.scala.NodeView required: org.eclipse.swt.widgets.Label
The types are:
label(setups: (Label => Unit)*)(parent: Composite) : Label
contains(setups: (W => Unit)*) : W
So it looks like _ now binds to the outer function instead of inner.
Is this change intentional?
A new developer machine needs a variety of software (e.g. java, eclipse, ANT, maven, SVN client), are there any scripts or tools which will set the environment / path variables after retreiving the software from binary distributions.
So i am testing a couple of API, and after sorting a couple of them, i am undecided between zemanta and opencalais.
A can use both perfectly at home, but at the company behind the proxy, i can put them working, even when running the same examples.
I am running this example http://philippeadjiman.com/blog/2009/09/16/open-calais-from-java-with-eclipse-extract-entities-facts-and-events-in-4-minutes/ and this http://developer.zemanta.com/wiki both java versions
How can i setup the proxy so it works?
blueomega
VSDoc is an awesome way of commenting Javascript, and I particularly like the ability to make one Javascript file 'depend' on another. This paves the way for Javascript minifiers/combiners that take into account proper ordering of script includes.
The only thing that might bother some is that it's VS-Doc.
Are there any competing standards that are designed to be vendor-neutral?
And how widely is the VSDoc standard used by non-Microsoft IDEs such as Eclipse, etc?
I mean, do programmers need very fast computers with amazing video cards or just standard ones. Is it better to use 1 or 2 monitors? Some applications consume a lot of resources like Netbeans or Eclipse and sometimes developers need to install databases, graphic design applications, web design applications, web servers in their own computers for testing purposes.
I have to develop a specialised report editor in Java. The user will get a number of fields that can be layed out on a page plus some graphical elements. The resulting report design needs to be serialized into already defined database tables.
Is there any software library that will help to achieve this without reinventing the wheel? I have come across Eclipse GEF and Zest, but I am not sure if this really meets my problem.
Hi,
Does anyone know of a javascript UML diagrammer?
I have found the Eclipse plugin jsuml from jsuml.org, however the plugin crashes when I try to generate a diagram.
Thanks,
Bob
I tried to output XML in the view file. The view file is result_view.php and its first line is
<?php echo '<?xml version="1.0" encoding="UTF-8"?>'; ?>
But I get the error "Content is not allowed in prolog". So how to do this correctly? I use Eclipse + PDT.
Hello,
I have two (Eclipse-) projects. Project A depends on project B, but the projects aren't nested i.e. project A is not a subproject of project B. Apache Ivy is responsible for the dependency management.
When I run the compile task in Project A, is there any way to trigger the compile task (in project B) automatically (for example if the jar file of project B doesn't exist)?
Thanks a million in advance.
I have Aptana plugin in eclipse, I have a javascript (one.js) and i have included one more Javscript(two.js) within one.js.
I click on any functions within one.js and if those functions exists in the same one.js, the control is going to the respective function.
Suppose if the function exists in two.js, the control is not going to two.js
Can any one help me with this?
Dear All:
I have an interesting dilemma.
If I define my class as:
class Browser {
def swtException
protected Object evaluate(script) throws SWTException {
swtException=null
display.syncExec() {
try {
result=swtBrowser.evaluate(script)
} catch (SWTException swtException) {
Browser.swtException=swtException
}
}
}
I get this rather interesting error:
Exception in thread "Thread-5" org.eclipse.swt.SWTException: Failed to execute runnable (groovy.lang.MissingPropertyException: No such property: swtException for class
: com.mksoft.fbautomate.browser.Browser
Possible solutions: swtException)
Any ideas???
Thank you!
Misha
Hello,
I'm researching which linux distro would be the best for a software development environment. The technology stack we are using includes Grails/Groovy, Java, JBoss, Git, Eclipse, Oracle. Any thoughts from the stackoverflow mind share?
Thanks!
Steve
Hi i am new to php, I currently learning php using eclipse. I know i have to install the zend debugger my php.ini store at c:windows i had added in these line:
[Zend]
zend_extension=c:/php/ext/ZendDebugger.dll
zend_debugger.allow_hosts=127.0.0.1
zend_debugger.expose_remotely=always
zend_debugger.connector_port=10013
but on command prompt i tried php -m it shown that i never install zend debugger. I not sure where goes wrong I check phpinfo also never show any zend information.
I'm using eclipse to build an ear file using ant. I'm using oc4j, and I want to make sure that orion-application.xml is included in the build. What I'm currently using but does not work is:
<target name="ear" depends=""
<echoBuilding the ear file</echo
<copy todir="${build.dir}/META-INF"
<fileset dir="${conf.dir}" includes="orion-application.xml"/
</copy
<ear destfile="${dist.dir}/${ant.project.name}.ear"
appxml="${conf.dir}/application.xml"
<fileset dir="${dist.dir}" includes="*.jar,*.war"/
</ear
</target
What is the right way to add this to the ear?
Hello.
I have a problem with Android Emulator. I have created avd and run it. But when it was started I can't work, because it emulate typing many "=" symbol.
I launch this avd with -debug-all parameter and debuger write "could not handle (sym=61, mod=0, str=EQUAL) KEY [0x00d, down]".
OS - Windows Vista. Last version Java platform, SDK, Eclipse.
Thank you very mach if you can hep me =)
I came across this question after searching for a ODBC or JDBC. To my surprise, since I am new to db4o I found there are tools to browse db4o, including a Netbeans and Eclipse plug in. However, when it comes to the question at hand, I only found one company, and the product is not being sold nor demoed (makes me think is not ready yet).
So, how do you transfer data? Is there a tool or script I have not found yet?
I'm trying to figure out how to use HTTPClient (org.eclipse.jetty.client.HttpClient) so it will pipeline HTTP Request.
I've tried to create some HttpExchange instances and applying the send() method for each, in an asynchronous mode, but each HTTP request has waited for it response before the next request was sent.
Can you please supply a code snippet for this case?
i want to create sub menu for a BB application
when i click on menu item it shows
Option 1
Option 2
Option 3
When i click on option 3 it should display
1
2
3
as sub menu items..
using j2me + eclipse
I've been somewhat spoiled using Eclipse and java. I started using vim to do C coding in a linux environment, is there a way to have vim automatically do the proper spacing for blocks?
So after typing a { the next line will have 2 spaces indented in, and a return on that line will keep it at the same indentation, and a } will shift back 2 spaces?
I'm embedding Jetty in a similar manner as described here. When the RequestLogHandler can't open the specified logfile, it throws an exception which is unfortunately caught by org.eclipse.jetty.server.Server and swallowed (but logged first, at least). This means that there's no obvious way for me to tell if the log handler was started correctly.
Is there a way that I'm missing to detect when a handler couldn't start?
Hi,
Is it possible, by using ANT, to create 1 war-file out of two separate eclipse java web application projects? Besides from just copying the right files to the right places i would have to be able two create one single web.xml. Also some other files that exists in both projects should be united into one file.
Thanks
Pich
Hi
I am following this tutorial http://developer.android.com/intl/de/guide/tutorials/views/hello-tabwidget.html and have completed it. Now I would actually like to add you know some controls to these tabs like textboxes(text edit).
How do I do this? I go to my mail.xml using eclipse as my ide and go to layout view and I now get a NullPointerException so I can't even drag stuff onto the layout anymore.
Thanks