JavaDoc crashs in netbeans !!!

Hi ,
My problem is when i generate a javadoc for my project in netbean 4.1 it just crashs and this is the message in the console text area :
Javadoc execution
javadoc: error - Illegal package name: "${javadoc.additionalparam}"
Loading source file C:\NetBeans Workspace\Spider june 7\Spider june 7\src\indexer\Connectivity.java...
Loading source file C:\NetBeans Workspace\Spider june 7\Spider june 7\src\indexer\Indexer.java...
Loading source file C:\NetBeans Workspace\Spider june 7\Spider june 7\src\jranker1\JRanker.java...
Loading source file C:\NetBeans Workspace\Spider june 7\Spider june 7\src\jranker1\ParserGetter.java...
Loading source file C:\NetBeans Workspace\Spider june 7\Spider june 7\src\jranker1\RankingInterface.java...
Loading source file C:\NetBeans Workspace\Spider june 7\Spider june 7\src\jranker1\WordsToIgnore.java...
Loading source file C:\NetBeans Workspace\Spider june 7\Spider june 7\src\spider\CrawlerNParserThread.java...
Loading source file C:\NetBeans Workspace\Spider june 7\Spider june 7\src\spider\FileUtilities.java...
Loading source file C:\NetBeans Workspace\Spider june 7\Spider june 7\src\spider\HTMLParse.java...
Loading source file C:\NetBeans Workspace\Spider june 7\Spider june 7\src\spider\RankerSharedStatus.java...
Loading source file C:\NetBeans Workspace\Spider june 7\Spider june 7\src\spider\Spider.java...
Loading source file C:\NetBeans Workspace\Spider june 7\Spider june 7\src\spider\SpiderSettings.java...
Loading source file C:\NetBeans Workspace\Spider june 7\Spider june 7\src\spider\SpiderSharedStatus.java...
Loading source file C:\NetBeans Workspace\Spider june 7\Spider june 7\src\spider\StatusCheck.java...
1 error
C:\NetBeans Workspace\Spider june 7\Spider june 7\nbproject\build-impl.xml:344: Javadoc returned 1
BUILD FAILED (total time: 1 second)
It used to work before and generate javadoc but now it no longer does ,any suggestions ??

This is a known issue, and there's an easy work-around.
See http://www.netbeans.org/issues/show_bug.cgi?id=58221
Cheers,
Peter

Similar Messages

  • Getting Javadoc hints in Netbeans on Mac OS X

    I've been trying to get Javadoc hints in NetBeans (6) on Mac OS X, but I can't figure out what's wrong. I keep getting "javadoc not found" messages.
    Does anyone know the proper path to set in the Java Platforms manager's Javadoc tab? I've tried downloading new documentation from Sun and pointing to the api folder, but that didn't work either.
    Thanks.

    Follow the instructions in NetBeans' Help. If that doesn't work, you need to ask at a site that supports NetBeans - these forums provide Java language support, not IDE support.

  • Swing application with JavaHelp crashes outside Netbeans IDE.

    Hi guys I have developed a small swing application in Netbeans IDE. I used the following code inside the IDE for JH.
    public void createHelp()
           try {
                   URL hsURL = new URL("jar:file:eDictionaryHelp.jar!/eDictionaryHelp/eDictionary.hs");
                   hs = new HelpSet(null, hsURL);
           catch (Exception ee)
            // Say what the exception really is
            System.out.println( "HelpSet " + ee.getMessage());
            System.out.println("HelpSet "+ helpHS +" not found");
            JOptionPane.showMessageDialog(new JFrame(), ee.getMessage(), "Error", ERROR_MESSAGE);
            hb = hs.createHelpBroker();
       }When I run the program inside the IDE and and click on the corresponding MenuItem.. JavaHelp comes up as it should! No problems with that.
    But when I build the project and tried to run it from the .jar file in the PROJECT_HOME/dist/ the swing got displayed till this function was called. and then it simply crashed.
    Investigating further and commenting out one line at a time and compiling I found out that whenever the hs = new HelpSet(null, hsURL); is encountered, the app crashes (it doesnt throw any error).
    But as I said this is not the case when i run and compile inside the IDE. I only get this problem when running the app from outside the IDE.
    I have tried all kinds of combinations of the URL .. for eg ( I am aware of Bug 4149782)
    ClassLoader cl = this.getClass().getClassLoader();
    try {
                   URL hsURL = HelpSet.findHelpSet(cl, helpHS);
    .What can be the problem guys? Any suggestions?
    Thanks!

    Anyone has an answer on this?
    I am facing the same problem.. I am using NetBeans 5.5
    arijit_datta, do u have a solution for this problem already?
    Thanks,
    SK

  • JAVADOC Problem in Netbeans 5.0

    JAVADOC won't work in Netbeans 5.0 when i try to add it in the Library Manager, Platform Manager. But it works well in JCREATOR. Why is that?

    Don't add Javadoc to the Library Manager or Platform Manager in Netbeans. That's not what they're for. I don't what Library Manager or Platform Manager mean in JCreator, but Netbeans isn't JCreator.
    Netbeans handles javadoc by default when you create a project and allow Netbeans to create the build.xml ant script. To add javadoc capability to a free form project (existing ant script), do the following. In the project.xml file in the nbproject folder, look for where the "build" action is. Add a new action like the following:
    <action name="javadoc">
        <script>nbproject/ide-javadoc.xml</script>
        <target>ide-javadoc</target>
    </action>Then create the ide-javadoc.xml file in the nbproject folder. It could look like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <project name="Custom-IDE" basedir=".">
        <target name="ide-javadoc">
            <javadoc destdir="../javadoc">
                <fileset dir="../src" includes="**/*.java"/>
            </javadoc>
        </target>
    </project>Finally, within the IDE, check the project properties, build and run. Make sure the generate javadoc task is associated with the ide-javadoc ant task.
    After all that, the Netbeans generate javadocs command will be available just as it is when Netbeans creates the Ant script.

  • JavaDoc Crashes when using -linksource

    I tried upgrading our JavaDoc compilation to version 1.4.beta 3. When I run JavaDoc with the new "-linksource"
    option it crashes. Note we have over 10,000 classes
    in our product, and perhaps that is a facor. If I
    turn off -linksource, it runs to completion.
    This is the error mesge:
    C:\wfc\Services\Build\Source\com\kronos\wfc\security\test\AuthenticationTester.java:32: warning - @author: is an unknown tag.
    javadoc: In doclet class com.sun.tools.doclets.standard.Standard, method start has thrown an exception java.lang.reflect.InvocationTargetException
    java.lang.NullPointerException
         at com.sun.tools.doclets.SourceToHTMLConverter.getAnchorName(SourceToHTMLConverter.java:282)
         at com.sun.tools.doclets.standard.HtmlStandardWriter.printSrcLink(HtmlStandardWriter.java:1102)
         at com.sun.tools.doclets.standard.ClassWriter.printClassDescription(ClassWriter.java:301)
         at com.sun.tools.doclets.standard.ClassWriter.generateClassFile(ClassWriter.java:228)
         at com.sun.tools.doclets.standard.ClassWriter.generate(ClassWriter.java:98)
         at com.sun.tools.doclets.standard.Standard.generateClassCycle(Standard.java:248)
         at com.sun.tools.doclets.standard.Standard.generateClassFiles(Standard.java:203)
         at com.sun.tools.doclets.standard.Standard.startGeneration(Standard.java:169)
         at com.sun.tools.doclets.standard.Standard.start(Standard.java:47)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:42)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:28)
         at java.lang.reflect.Method.invoke(Method.java:327)
         at com.sun.tools.javadoc.DocletInvoker.invoke(DocletInvoker.java:196)
         at com.sun.tools.javadoc.DocletInvoker.start(DocletInvoker.java:95)
         at com.sun.tools.javadoc.Start.parseAndExecute(Start.java:288)
         at com.sun.tools.javadoc.Start.begin(Start.java:114)
         at com.sun.tools.javadoc.Main.execute(Main.java:44)
         at com.sun.tools.javadoc.Main.main(Main.java:34)
    2 errors
    3059 warnings

    This is the first we've heard of such a bug.
    I encourage you to submit this as a bug at java.sun.com/cgi-bin/bugreport.cgi
    -Doug Kramer
    Javadoc team

  • JVM crash in netbeans 5.0 using JPDA

    It happens almost all the time when I use netbeans 5.0 (jdk1.5.0_06-b05) attaching a remote java process with jpda. And the hotspot err file looks like below. I am not sure if this is due to Windows XP upgrade by the IT guys of my company. Thanks alot!
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x71ab428e, pid=2580, tid=1388
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_06-b05 mixed mode)
    # Problematic frame:
    # C [WS2_32.dll+0x428e]
    --------------- T H R E A D ---------------
    Current thread (0x19e71d58): JavaThread "Default RequestProcessor" daemon [_thread_in_native, id=1388]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000013
    Registers:
    EAX=0x1965f1ad, EBX=0x00000013, ECX=0x1965f124, EDX=0x00000e74
    ESP=0x1965f0d0, EBP=0x1965f930, ESI=0x71ab428a, EDI=0x00000013
    EIP=0x71ab428e, EFLAGS=0x00010282
    Top of Stack: (sp=0x1965f0d0)
    0x1965f0d0: 195044f2 00000e74 1965f124 00000013
    0x1965f0e0: 00000000 1950f278 1950575d 1950f278
    0x1965f0f0: 1965f108 1950f278 00000013 1965f124
    0x1965f100: 71ab428f 6d4c6b6e 00000e74 1965f124
    0x1965f110: 00000013 00000000 045abb70 00000013
    0x1965f120: 19e71d58 13000000 d36a0200 00040b00
    0x1965f130: 00000000 002c0000 19e71d58 0b000000
    0x1965f140: 5e690200 00040100 1965f690 1965f684
    Instructions: (pc=0x71ab428e)
    0x71ab427e: c8 ff e9 57 fe ff ff 90 90 90 90 90 e8 61 14 a5
    0x71ab428e: a7 c2 10 00 56 57 33 ff 81 3d 28 40 ac 71 48 94
    Stack: [0x19620000,0x19660000), sp=0x1965f0d0, free space=252k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [WS2_32.dll+0x428e]
    J java.net.SocketOutputStream.socketWrite0(Ljava/io/FileDescriptor;[BII)V
    J java.net.SocketOutputStream.socketWrite([BII)V
    J java.net.SocketOutputStream.write([BII)V
    J com.sun.tools.jdi.SocketConnection.writePacket([B)V
    J com.sun.tools.jdi.TargetVM.send(Lcom/sun/tools/jdi/Packet;)V
    J com.sun.tools.jdi.PacketStream.send()V
    J com.sun.tools.jdi.JDWP$ThreadReference$Status.enqueueCommand(Lcom/sun/tools/jdi/VirtualMachineImpl;Lcom/sun/tools/jdi/ThreadReferenceImpl;)Lcom/sun/tools/jdi/PacketStream;
    J com.sun.tools.jdi.ThreadReferenceImpl.jdwpStatus()Lcom/sun/tools/jdi/JDWP$ThreadReference$Status;
    J org.netbeans.modules.debugger.jpda.actions.PauseActionProvider.checkEnabled(I)V
    j org.netbeans.modules.debugger.jpda.actions.PauseActionProvider.run()V+27
    j org.openide.util.RequestProcessor$Task.run()V+15
    J org.openide.util.RequestProcessor$Processor.run()V
    v ~StubRoutines::call_stub
    V [jvm.dll+0x845a9]
    V [jvm.dll+0xd9317]
    V [jvm.dll+0x8447a]
    V [jvm.dll+0x841d7]
    V [jvm.dll+0x9ed69]
    V [jvm.dll+0x109fe3]
    V [jvm.dll+0x109fb1]
    C [MSVCRT.dll+0x2a3b0]
    C [kernel32.dll+0xb683]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    J java.net.SocketOutputStream.socketWrite0(Ljava/io/FileDescriptor;[BII)V
    J java.net.SocketOutputStream.socketWrite([BII)V
    J java.net.SocketOutputStream.write([BII)V
    J com.sun.tools.jdi.SocketConnection.writePacket([B)V
    J com.sun.tools.jdi.TargetVM.send(Lcom/sun/tools/jdi/Packet;)V
    J com.sun.tools.jdi.PacketStream.send()V
    J com.sun.tools.jdi.JDWP$ThreadReference$Status.enqueueCommand(Lcom/sun/tools/jdi/VirtualMachineImpl;Lcom/sun/tools/jdi/ThreadReferenceImpl;)Lcom/sun/tools/jdi/PacketStream;
    J com.sun.tools.jdi.ThreadReferenceImpl.jdwpStatus()Lcom/sun/tools/jdi/JDWP$ThreadReference$Status;
    J org.netbeans.modules.debugger.jpda.actions.PauseActionProvider.checkEnabled(I)V
    j org.netbeans.modules.debugger.jpda.actions.PauseActionProvider.run()V+27
    j org.openide.util.RequestProcessor$Task.run()V+15
    J org.openide.util.RequestProcessor$Processor.run()V
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x10e7fc08 JavaThread "JPDA Processor" daemon [_thread_blocked, id=5164]
    =>0x19e71d58 JavaThread "Default RequestProcessor" daemon [_thread_in_native, id=1388]
    0x19e8ad40 JavaThread "Inactive RequestProcessor thread [Was:Source hierarchy bridge/org.netbeans.modules.java.bridge.ElementImpl$1]" daemon [_thread_blocked, id=5448]
    0x1a01f020 JavaThread "Inactive RequestProcessor thread [Was:Hints RP/org.netbeans.modules.editor.hints.HintsOperator$HintPopupTaskImpl]" daemon [_thread_blocked, id=4160]
    0x1a182d58 JavaThread "Debugger Values Evaluator" daemon [_thread_blocked, id=6096]
    0x10e5ce98 JavaThread "Debugger operator thread" daemon [_thread_blocked, id=5824]
    0x10e14930 JavaThread "Inactive RequestProcessor thread [Was:ToolTip-Evaluator/org.netbeans.modules.editor.NbToolTip$Request]" daemon [_thread_blocked, id=3528]
    0x113294f8 JavaThread "JDI Target VM Interface" daemon [_thread_in_native, id=3744]
    0x1108ba20 JavaThread "JDI Internal Event Handler" daemon [_thread_blocked, id=4044]
    0x11313c80 JavaThread "MDR event dispatcher" daemon [_thread_blocked, id=5280]
    0x00038ef0 JavaThread "DestroyJavaVM" [_thread_blocked, id=5744]
    0x11091be0 JavaThread "AWT-EventQueue-1" [_thread_blocked, id=3736]
    0x10eb2e50 JavaThread "TimerQueue" daemon [_thread_blocked, id=5096]
    0x11068890 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=4280]
    0x1105e7b0 JavaThread "AWT-Windows" daemon [_thread_in_native, id=6120]
    0x10d88c20 JavaThread "AWT-Shutdown" [_thread_blocked, id=1460]
    0x10f1f9f8 JavaThread "Timer-0" daemon [_thread_blocked, id=4968]
    0x10f785b0 JavaThread "CLI Requests Server" daemon [_thread_in_native, id=6076]
    0x10d3dfd0 JavaThread "Active Reference Queue Daemon" daemon [_thread_blocked, id=3288]
    0x00aa8d40 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=5124]
    0x00aa7910 JavaThread "CompilerThread0" daemon [_thread_blocked, id=4952]
    0x00aa6c90 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=660]
    0x00a995f0 JavaThread "Finalizer" daemon [_thread_blocked, id=3764]
    0x00a98158 JavaThread "Reference Handler" daemon [_thread_blocked, id=5260]
    Other Threads:
    0x00a94048 VMThread [id=4260]
    0x00ac3898 WatcherThread [id=5800]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 5376K, used 4990K [0x02ae0000, 0x030b0000, 0x034b0000)
    eden space 4800K, 99% used [0x02ae0000, 0x02f8e008, 0x02f90000)
    from space 576K, 34% used [0x03020000, 0x03051b60, 0x030b0000)
    to space 576K, 0% used [0x02f90000, 0x02f90000, 0x03020000)
    tenured generation total 71172K, used 63527K [0x034b0000, 0x07a31000, 0x0aae0000)
    the space 71172K, 89% used [0x034b0000, 0x072b9dc8, 0x072b9e00, 0x07a31000)
    compacting perm gen total 35584K, used 35228K [0x0aae0000, 0x0cda0000, 0x10ae0000)
    the space 35584K, 99% used [0x0aae0000, 0x0cd47160, 0x0cd47200, 0x0cda0000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x0040c000      D:\jdk\jdk1.5.0_06\jre\bin\java.exe
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f4000      C:\WINDOWS\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000      C:\WINDOWS\system32\RPCRT4.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\MSVCRT.dll
    0x6d670000 - 0x6d804000      D:\jdk\jdk1.5.0_06\jre\bin\client\jvm.dll
    0x77d40000 - 0x77dd0000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f57000      C:\WINDOWS\system32\GDI32.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.DLL
    0x629c0000 - 0x629c9000      C:\WINDOWS\system32\LPK.DLL
    0x74d90000 - 0x74dfb000      C:\WINDOWS\system32\USP10.dll
    0x6d280000 - 0x6d288000      D:\jdk\jdk1.5.0_06\jre\bin\hpi.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d640000 - 0x6d64c000      D:\jdk\jdk1.5.0_06\jre\bin\verify.dll
    0x6d300000 - 0x6d31d000      D:\jdk\jdk1.5.0_06\jre\bin\java.dll
    0x6d660000 - 0x6d66f000      D:\jdk\jdk1.5.0_06\jre\bin\zip.dll
    0x009b0000 - 0x009d8000      C:\WINDOWS\system32\rsaenh.dll
    0x769c0000 - 0x76a73000      C:\WINDOWS\system32\USERENV.dll
    0x5b860000 - 0x5b8b4000      C:\WINDOWS\system32\netapi32.dll
    0x6d4c0000 - 0x6d4d3000      D:\jdk\jdk1.5.0_06\jre\bin\net.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\System32\mswsock.dll
    0x76f20000 - 0x76f47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76fb0000 - 0x76fb8000      C:\WINDOWS\System32\winrnr.dll
    0x76f60000 - 0x76f8c000      C:\WINDOWS\system32\WLDAP32.dll
    0x751d0000 - 0x751ee000      C:\WINDOWS\system32\wshbth.dll
    0x77920000 - 0x77a13000      C:\WINDOWS\system32\SETUPAPI.dll
    0x76fc0000 - 0x76fc6000      C:\WINDOWS\system32\rasadhlp.dll
    0x76d60000 - 0x76d79000      C:\WINDOWS\system32\iphlpapi.dll
    0x76d40000 - 0x76d58000      C:\WINDOWS\system32\MPRAPI.dll
    0x77cc0000 - 0x77cf2000      C:\WINDOWS\system32\ACTIVEDS.dll
    0x76e10000 - 0x76e35000      C:\WINDOWS\system32\adsldpc.dll
    0x76b20000 - 0x76b31000      C:\WINDOWS\system32\ATL.DLL
    0x774e0000 - 0x7761d000      C:\WINDOWS\system32\ole32.dll
    0x77120000 - 0x771ac000      C:\WINDOWS\system32\OLEAUT32.dll
    0x76e80000 - 0x76e8e000      C:\WINDOWS\system32\rtutils.dll
    0x71bf0000 - 0x71c03000      C:\WINDOWS\system32\SAMLIB.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    0x6d000000 - 0x6d167000      D:\jdk\jdk1.5.0_06\jre\bin\awt.dll
    0x73000000 - 0x73026000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x73760000 - 0x737a9000      C:\WINDOWS\system32\ddraw.dll
    0x73bc0000 - 0x73bc6000      C:\WINDOWS\system32\DCIMAN32.dll
    0x73940000 - 0x73a10000      C:\WINDOWS\system32\D3DIM700.DLL
    0x19500000 - 0x1951a000      C:\Program Files\vsclient\Viexhk32.dll
    0x71ad0000 - 0x71ad9000      C:\WINDOWS\system32\WSOCK32.dll
    0x74720000 - 0x7476b000      C:\WINDOWS\system32\MSCTF.dll
    0x19590000 - 0x195ad000      C:\WINDOWS\DOWNLO~1\BDPlugin.dll
    0x77c00000 - 0x77c08000      C:\WINDOWS\system32\VERSION.dll
    0x755c0000 - 0x755ee000      C:\WINDOWS\system32\msctfime.ime
    0x7c9c0000 - 0x7d1d5000      C:\WINDOWS\system32\shell32.dll
    0x77f60000 - 0x77fd6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x773d0000 - 0x774d2000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\comctl32.dll
    0x5d090000 - 0x5d127000      C:\WINDOWS\system32\comctl32.dll
    0x6d240000 - 0x6d27d000      D:\jdk\jdk1.5.0_06\jre\bin\fontmanager.dll
    0x6d4e0000 - 0x6d4e9000      D:\jdk\jdk1.5.0_06\jre\bin\nio.dll
    0x60300000 - 0x60307000      C:\Program Files\Yahoo!\Messenger\idle.dll
    0x7c340000 - 0x7c396000      C:\Program Files\Yahoo!\Messenger\MSVCR71.dll
    0x605d0000 - 0x605d9000      C:\WINDOWS\system32\mslbui.dll
    0x6d1c0000 - 0x6d1e3000      D:\jdk\jdk1.5.0_06\jre\bin\dcpr.dll
    0x6d210000 - 0x6d218000      D:\jdk\jdk1.5.0_06\jre\bin\dt_shmem.dll
    0x197d0000 - 0x197df000      C:\Program Files\Dell\Bluetooth Software\btkeyind.dll
    VM Arguments:
    jvm_args: -Dnetbeans.importclass=org.netbeans.upgrade.AutoUpgrade -Dnetbeans.accept_license_class=org.netbeans.license.AcceptLicense -Xms32m -Xmx128m -XX:PermSize=32m -XX:MaxPermSize=96m -Xverify:none -Dapple.laf.useScreenMenuBar=true -Dcom.sun.aas.installRoot=D:\software\Sun\AppServer -Dnetbeans.osenv=C:\DOCUME~1\XFSONG~1.000\LOCALS~1\Temp\nbenv22 -Dnetbeans.osenv.nullsep=true -Djdk.home=D:\jdk\jdk1.5.0_06 -Dnetbeans.home=D:\software\netbeans-5.0\platform6 -Dnetbeans.dirs=D:\software\netbeans-5.0\nb5.0;D:\software\netbeans-5.0\ide6;D:\software\netbeans-5.0\enterprise2;D:\software\netbeans-5.0\harness -Dnetbeans.user=C:\Documents and Settings\xfsong.SYBASE.000\.netbeans\5.0 -Dnetbeans.system_http_proxy=DIRECT -Dsun.awt.keepWorkingSetOnMinimize=true
    java_command: org/netbeans/Main --branding nb
    Launcher Type: SUN_STANDARD
    Environment Variables:
    CLASSPATH=C:\Program Files\Sybase\EAServer6\PowerBuilder\pbjdbc12100.jar;C:\Program Files\Sybase\EAServer6\PowerBuilder\pbejbclient100.jar
    PATH=C:\mkstool\bin;C:\mkstool\bin\X11;C:\mkstool\mksnt;D:\xfsong\workhome\tools;D:\jdk\jdk1.5.0_04\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Rational\Attache\bin;C:\PROGRA~1\ULTRAE~1;"C:\Program Files\Hummingbird\Connectivity\7.00\Accessories\";D:\tools\jadnt;C:\Program Files\QuickTime\QTSystem\;d:\software\Sybase\Shared\PowerBuilder;d:\software\Sybase\SQL Anywhere 9\win32;d:\software\Sybase\Shared\win32;d:\software\Sybase\SQL Anywhere 9\drivers;d:\software\Sybase\Shared\Sybase Central 4.3\win32;d:\software\Sybase\InfoMaker 10.5\Tutorial;d:\software\Sybase\Shared\Web Targets;
    USERNAME=xfsong
    SHELL=C:/mkstool/mksnt/sh.exe
    DISPLAY=:0.0
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 13 Stepping 8, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 1 family 6, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 2096528k(864664k free), swap 3511504k(2177548k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_06-b05) for windows-x86, built on Nov 10 2005 11:12:14 by "java_re" with MS VC++ 6.0

    The easiest thing to do is to create a project that works in NB, then follow the instructions that it provides for running the program outside of NB.
    If you want things named differently, in different locations, etc, you need to learn about using jar files, the jar's manifest file parameters, and the classpath. If so, start here: http://java.sun.com/docs/books/tutorial/deployment/index.html

  • How to write Vietnames comments by JavaDoc tool in NetBeans IDE

    Hello everybody!
    I'm software technology programming of Huesoft company of VietNam and I'm researching about JavaDoc tool but I get a problem that I can't write comments and generate doccuments by Vietnames. I only know that I can open the HTML files, modify comments by Vietnames and save as HTML files with Unicode mode. However, We should not use this way because it is very not PRO. Who is know it, please help me!
    Thanks!

    javadoc -charset utf-8 Viet.javaIf your source files were saved in utf8 format, specify -encoding utf8 also.

  • Java 5 crashing running Netbeans

    I don't know if this is the appropriate place to post this, but... Running either Netbeans 4.1 or 5 beta using the Java 5 jdk, Netbeans keeps dying at the worst moment. I am getting the following error - what should I do?
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_FLT_STACK_CHECK (0xc0000092) at pc=0x00b40b98, pid=1768, tid=3556
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_05-b05 mixed mode, sharing)
    # Problematic frame:
    # v ~SafepointBlob
    --------------- T H R E A D ---------------
    Current thread (0x00ad69c0): JavaThread "AWT-Windows" daemon [_thread_in_Java, id=3556]
    siginfo: ExceptionCode=0xc0000092, ExceptionInformation=0x00000000 0x0352f330
    Registers:
    EAX=0x00ad69c0, EBX=0x00ad69c0, ECX=0x0352f3c8, EDX=0x7c91eb94
    ESP=0x0352f330, EBP=0x0352f408, ESI=0x00000003, EDI=0x00ad69c0
    EIP=0x00b40b98, EFLAGS=0x00010206
    Top of Stack: (sp=0x0352f330)
    0x0352f330: 00000000 00000000 000301a8 00000000
    0x0352f340: 00000000 00000000 02f5cc80 02f20000
    0x0352f350: 00000000 00030178 02f5cc58 02f20000
    0x0352f360: 00000001 00000009 000301d0 00000001
    0x0352f370: ffff1372 ffff4000 ffffffff 5b1529be
    0x0352f380: 0000001b 0352f03c ffff0023 00000000
    0x0352f390: 0352f7d8 a640003b 003bed95 00000000
    0x0352f3a0: 00000000 0352f840 001b003b 02860000
    Instructions: (pc=0x00b40b98)
    0x00b40b88: 83 ec 6c dd 34 24 9b d9 24 24 83 ec 40 dd 1c 24
    0x00b40b98: dd 5c 24 08 dd 5c 24 10 dd 5c 24 18 dd 5c 24 20
    Stack: [0x034f0000,0x03530000), sp=0x0352f330, free space=252k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    v ~SafepointBlob
    J sun.reflect.GeneratedMethodAccessor2.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;
    J sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;
    J java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;
    J sun.awt.SunToolkit.wakeupEventQueue(Ljava/awt/EventQueue;Z)V
    J sun.awt.PostEventQueue.postEvent(Ljava/awt/AWTEvent;)V
    J sun.awt.SunToolkit.postEvent(Lsun/awt/AppContext;Ljava/awt/AWTEvent;)V
    J sun.awt.windows.WComponentPeer.postEvent(Ljava/awt/AWTEvent;)V
    v ~StubRoutines::call_stub
    V [jvm.dll+0x8295c]
    V [jvm.dll+0xd752e]
    V [jvm.dll+0x8282d]
    V [jvm.dll+0x87c4b]
    C [java.dll+0x4ef5]
    C [java.dll+0x4db7]
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x0c2ffd10 JavaThread "Inactive RequestProcessor thread [Was:Overriddens Queue/org.netbeans.modules.java.OverrideAnnotationSupport$Request]" daemon [_thread_blocked, id=2484]
    0x0c817c50 JavaThread "Inactive RequestProcessor thread [Was:Overriddens Queue/org.netbeans.modules.java.OverrideAnnotationSupport$Request]" daemon [_thread_blocked, id=2420]
    0x0c300990 JavaThread "Inactive RequestProcessor thread [Was:ToolTip-Evaluator/org.netbeans.modules.editor.NbToolTip$Request]" daemon [_thread_blocked, id=3164]
    0x0c504d18 JavaThread "Inactive RequestProcessor thread [Was:Hints RP/org.netbeans.modules.editor.hints.HintsOperator$HintPopupTaskImpl]" daemon [_thread_blocked, id=3704]
    0x030de9d0 JavaThread "Text-Layout" [_thread_blocked, id=2368]
    0x03185e18 JavaThread "URLdisplayer" [_thread_blocked, id=2880]
    0x02f50b18 JavaThread "MDR event dispatcher" daemon [_thread_blocked, id=3540]
    0x000381e0 JavaThread "DestroyJavaVM" [_thread_blocked, id=3496]
    0x02fdb4f8 JavaThread "AWT-EventQueue-1" [_thread_in_vm, id=112]
    0x03017d60 JavaThread "TimerQueue" daemon [_thread_blocked, id=3832]
    0x02f608f0 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=1984]
    =>0x00ad69c0 JavaThread "AWT-Windows" daemon [_thread_in_Java, id=3556]
    0x02d54c28 JavaThread "AWT-Shutdown" [_thread_blocked, id=1832]
    0x02d2ce08 JavaThread "Active Reference Queue Daemon" daemon [_thread_blocked, id=3916]
    0x02fd9590 JavaThread "Timer-0" daemon [_thread_blocked, id=520]
    0x02f1a0a0 JavaThread "CLI Requests Server" daemon [_thread_in_native, id=3908]
    0x00a80e58 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3808]
    0x00a7fad0 JavaThread "CompilerThread0" daemon [_thread_blocked, id=3732]
    0x00a7ed68 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=3816]
    0x00a79fa8 JavaThread "Finalizer" daemon [_thread_blocked, id=988]
    0x00a58aa0 JavaThread "Reference Handler" daemon [_thread_blocked, id=2024]
    Other Threads:
    0x00a78190 VMThr...................and so on

    It was supported in the early beta releases of Tiger but is no longer supported by Sun and doesn't work out-of-the box. If you really need it and are willing to experiment you could try Retroweaver.

  • Seeking advice , how you guys develop without javadoc popup ?

    Hi developers
    I wan to ask your advice about quick javaDoc orJavaDoc popup.
    I used to develop in eclipse and Netbeans , in both of this IDEs and APIs that i worked on them , there were allways a qick javadoc available ,
    In netbeans we add javaDoc folder/archive for each libraries and then when we were coding we could see the javadoc for current method that we are tring to use or even we could see quick javadoc by puting mouse on any items in the editor.
    but now i Jdeveloper i really really can not be as productive as i was in netbeans.
    it is corrent that i am facing tons of new APIs , but which slow my advancements , but not to having javadoc around make me crazy.
    is there any place that i download and somehow attach the javaDoc for numerous Oracle APIs in Jdeveloper ?
    take a look at here , it simply shows what i mean for popup JavaDoc in netbeans http://www.netbeans.org/products/ide/editor.html
    Thanks

    thank you for the hint , i am looking to add javadc for many of oracle.* packges
    one of them is oracle.security which i want its quick javadoc to be around.
    but i can not find its javadoc to attach it to entire IDE system.
    Also, i think oracle Jdeveloper itself should come with a configuration that does not ned to add any javadoc for any of ordinary oracle APIs.
    it should be like this (imho) ,
    -register a server
    -if it is oracle server as a target do not ask for javadoc path otherwise ask for javadoc path
    -add server libraries to project with their documentation.
    -show javadoc to user :> when he/she asks with CTRL+D
    one other question , i find that thre are several libraries already registered in IDE , how i can categorize them ?
    for example how (without a full scan ;) ) find where is oracle.security packages in those libraries?
    Thanks again
    thanks

  • Anyone knows about adding JTAPI libraries into netbeans 5?

    anyone knows how can i add JTAPI libraries into my project in netbeans?i can use the auto import in netbeans when i use import javax.telephony.*; with it's javadoc shown.but netbeans still issuing an error when i try to compile my file.any ideas?

    hi,
    thanks for replying.i have done that already,i think that's why i can use the auto complete feature and see those packages but the problem is netbeans can see those packages and still give me the message :
    package javax.telephony.*; does not exsist. even when i tryed to compile my file it showed the same message.
    any ideas?

  • How uninstall a Netbeans 5.5 module manually?

    hi everyone,
    i have installed the VCS Generic Source Save module for Netbeans 5.5 using the online updater the IDE has.
    when i was configuring it, maye i put something wrong in the path of my MS Source Safe, so when i restar the IDE i had an error that crashes my Netbeans.
    So i uninstall Netbeans, then reinstall it, but is still giving me the error, i figure out that the module is still installed, HOW CAN I REMOVE IT? i tryed going to the Netbeans directory and i�ve found some directorys called modules in the IDE7 directory and i�ve found in there some modules called "org-netbeans-modules-versioning.jar" i delete it, but i can�t get out of the ERROR, can someone please help me? i just need to uninstall this module manually.
    thanx

    You can copy them using your favorite file manager or command line.
    If you want to do it in the IDE, then, open the favorites tab (Menu/Window/Favorites) , find the files, then copy/cut/paste or drag them to your project.
    What is a dynamic file anyway?

  • Warning: Leaving out empty argument '-windowtitle'

    When I generated a javaDoc for my project I received the following
    Warning: Leaving out empty argument '-windowtitle'
    Could someone please explain to me what is that warning and how to fix it?
    Thanks in advance

    I too am generating my javadoc files from Netbeans and I get the same message. However, my javadoc is generated fine, so my advice is not to worry about it!
    The documentation says:
    -windowtitle
    Specifies the title to be placed in the HTML <title> tag. This appears in the window title and in any browser bookmarks (favorite places) that someone creates for this page. This title should not contain any HTML tags, as the browser will not properly interpret them. Any internal quotation marks within title may have to be escaped. If -windowtitle is omitted, the Javadoc tool uses the value of -doctitle for this option.

  • How to know the image size and coding of our j2me project

    Hi,
    I have developed a game and i did the obfuscation. My jar size is now 170KB. How can differentiate the coding size and the image size from the total jar size.
    If i asked any thing wrongly, please forgive me and clarify my doubt.
    I am looking forward to meet ur queries if any.
    Thanks and Regards,
    Hithayath.

    <?xml version="1.0" encoding="UTF-8"?>
    <!-- *** GENERATED FROM project.xml - DO NOT EDIT *** -->
    <project xmlns:projdeps2="http://www.netbeans.org/ns/ant-project-references/2" basedir=".." default="jar" name="-impl">
    <target name="pre-init"/>
    <target depends="pre-init" name="pre-load-properties">
    <property file="nbproject/private/private.properties"/>
    <property value="0.0.1" name="deployment.number"/>
    <property value="000002" name="deployment.counter"/>
    <property location="${netbeans.user}/build.properties" name="user.properties.file"/>
    <available file="${user.properties.file}" property="user.properties.file.exists"/>
    </target>
    <target unless="config.active" depends="pre-load-properties" name="exists.config.active">
    <echo message="Active configuration (config.active property) is not set - using default." level="warning"/>
    <property name="config.active" value=""/>
    </target>
    <target unless="netbeans.user" depends="pre-load-properties" name="exists.netbeans.user">
    <echo message="NetBeans IDE user directory (netbeans.user property) is not set. By specifying this property many properties required by the project will be automatically evaluated (e.g.: ant-ext library home, ...). You could also open this project in the NetBeans IDE - in this case this property would be set automatically." level="warning"/>
    </target>
    <target unless="user.properties.file.exists" depends="pre-load-properties" name="exists.user.properties.file">
    <echo message="User properties file (user.properties.file) property is not set. By specifying this property many properties required by the project will be automatically evaluated (e.g.: libraries, platforms, ...)." level="warning"/>
    </target>
    <target depends="pre-load-properties,exists.config.active,exists.netbeans.user,exists.user.properties.file" name="load-properties">
    <loadproperties srcfile="nbproject/project.properties">
    <filterchain>
    <containsregex replace="\1" pattern="^configs\.${config.active}\.(.*)"/>
    <concatfilter prepend="nbproject/project.properties"/>
    <containsregex pattern="^platform.active=|^deployment.method="/>
    </filterchain>
    </loadproperties>
    <loadproperties srcfile="${user.properties.file}">
    <filterchain>
    <replaceregex replace="platform." pattern="^platforms\.${platform.active}\."/>
    <replaceregex replace="deployment.scriptfile=" pattern="^deployment\.${deployment.method}\.scriptfile="/>
    </filterchain>
    </loadproperties>
    <loadproperties srcfile="nbproject/project.properties">
    <filterchain>
    <containsregex replace="\1" pattern="^configs\.${config.active}\.(.*)"/>
    <concatfilter prepend="nbproject/project.properties"/>
    </filterchain>
    </loadproperties>
    </target>
    <target unless="platform.active" depends="load-properties" name="exists.platform.active">
    <echo message="Active platform (platform.active property) in not set. If you set this and user.properties.file property, many properties required by the project will be automatically evaluated (e.g.: platform home, platform classpath, ...)." level="warning"/>
    </target>
    <target depends="load-properties" unless="platform.configuration" name="exists.platform.configuration">
    <echo message="Platform configuration (platform.configuration) is not set. Using default (CLDC-1.0) configuration." level="warning"/>
    <property value="CLDC-1.0" name="platform.configuration"/>
    </target>
    <target depends="load-properties" unless="platform.profile" name="exists.platform.profile">
    <echo message="Platform profile (platform.profile) is not set. Using default (MIDP-1.0) profile." level="warning"/>
    <property value="MIDP-1.0" name="platform.profile"/>
    </target>
    <target depends="pre-init,load-properties,exists.platform.active,exists.platform.configuration,exists.platform.profile" name="init">
    <fail unless="libs.j2me_ant_ext.classpath">Classpath to J2ME Ant extension library (libs.j2me_ant_ext.classpath property) is not set. For example: location of mobility/modules/org-netbeans-modules-kjava-antext.jar file in the IDE installation directory.</fail>
    <fail unless="platform.home">Platform home (platform.home property) is not set. Value of this property should be ${platform.active.description} emulator home directory location.</fail>
    <fail unless="platform.bootclasspath">Platform boot classpath (platform.bootclasspath property) is not set. Value of this property should be ${platform.active.description} emulator boot classpath containing all J2ME classes provided by emulator.</fail>
    <fail unless="src.dir">Must set src.dir</fail>
    <fail unless="build.dir">Must set build.dir</fail>
    <fail unless="build.classes.dir">Must set build.classes.dir</fail>
    <fail unless="preprocessed.dir">Must set preprocessed.dir</fail>
    <fail unless="preverify.classes.dir">Must set preverify.classes.dir</fail>
    <fail unless="obfuscated.classes.dir">Must set obfuscated.classes.dir</fail>
    <fail unless="dist.dir">Must set dist.dir</fail>
    <fail unless="dist.jar">Must set dist.jar</fail>
    <fail unless="dist.jad">Must set dist.jad</fail>
    <fail unless="obfuscator.srcjar">Must set obfuscator.srcjar</fail>
    <fail unless="obfuscator.destjar">Must set obfuscator.destjar</fail>
    <fail unless="dist.javadoc.dir">Must set dist.javadoc.dir</fail>
    <property value="" name="abilities"/>
    <property value="" name="obfuscator.classpath"/>
    <property value="" name="kjava.configuration"/>
    <property value="UEI-1.0" name="platform.type"/>
    <property value="" name="platform.device"/>
    <property value="0" name="obfuscation.level"/>
    <property value="false" name="sign.enabled"/>
    <property value="file://" name="dist.jad.url"/>
    <property value="1.3" name="javac.source"/>
    <property value="1.1" name="javac.target"/>
    <property value="${file.encoding}" name="javac.encoding"/>
    <condition property="no.deps">
    <istrue value="${no.dependencies}"/>
    </condition>
    <condition property="no.javadoc.preview">
    <isfalse value="${javadoc.preview}"/>
    </condition>
    <condition value="${filter.excludes},**/*Test.java,**/test,**/test/**" property="filter.excludes.evaluated">
    <istrue value="${filter.exclude.tests}"/>
    </condition>
    <property value="${filter.excludes}" name="filter.excludes.evaluated"/>
    <condition value="" property="evaluated.run.security.domain">
    <isfalse value="${run.use.security.domain}"/>
    </condition>
    <condition value="" property="deployment.do.override.jarurl">
    <istrue value="${deployment.override.jarurl}"/>
    </condition>
    <property value="${run.security.domain}" name="evaluated.run.security.domain"/>
    <taskdef resource="org/netbeans/modules/kjava/antext/defs.properties">
    <classpath>
    <pathelement path="${libs.j2me_ant_ext.classpath}"/>
    </classpath>
    </taskdef>
    <uptodate targetfile="${preprocessed.dir}/.timestamp" property="no.clean.before.build">
    <srcfiles dir="nbproject">
    <include name="project.properties"/>
    <include name="build-impl.xml"/>
    </srcfiles>
    </uptodate>
    <condition property="skip.deployment">
    <equals trim="true" casesensitive="false" arg2="NONE" arg1="${deployment.method}"/>
    </condition>
    <condition property="skip-sign-keystore-password-input">
    <or>
    <isfalse value="${sign.enabled}"/>
    <and>
    <isset property="sign.keystore"/>
    <isset property="sign.keystore.password"/>
    <not>
    <equals trim="true" arg2="" arg1="${sign.keystore}"/>
    </not>
    <not>
    <equals trim="true" arg2="" arg1="${sign.keystore.password}"/>
    </not>
    </and>
    </or>
    </condition>
    <condition property="skip-sign-alias-password-input">
    <or>
    <isfalse value="${sign.enabled}"/>
    <and>
    <isset property="sign.keystore"/>
    <isset property="sign.alias"/>
    <isset property="sign.alias.password"/>
    <not>
    <equals trim="true" arg2="" arg1="${sign.keystore}"/>
    </not>
    <not>
    <equals trim="true" arg2="" arg1="${sign.alias}"/>
    </not>
    <not>
    <equals trim="true" arg2="" arg1="${sign.alias.password}"/>
    </not>
    </and>
    </or>
    </condition>
    <antcall inheritrefs="true" inheritall="true" target="post-init"/>
    </target>
    <target name="post-init"/>
    <target name="deps-jar" depends="init" unless="no.deps"/>
    <target description="Clean project in case its meta information has changed." unless="no.clean.before.build" depends="init" name="conditional-clean">
    <antcall target="do-clean" inheritall="true" inheritrefs="true"/>
    </target>
    <target name="pre-preprocess"/>
    <target description="Preprocess project sources." depends="init,pre-preprocess,deps-jar,conditional-clean" name="preprocess">
    <mkdir dir="${preprocessed.dir}"/>
    <echo file="${preprocessed.dir}/.timestamp" message="ignore me"/>
    <nb-prep encoding="${javac.encoding}" preprocessfor="${config.active},${abilities}" destdir="${preprocessed.dir}">
    <fileset excludes="${filter.excludes.evaluated}" defaultexcludes="${filter.use.standard}" dir="${src.dir}"/>
    </nb-prep>
    <antcall inheritrefs="true" inheritall="true" target="post-preprocess"/>
    </target>
    <target name="post-preprocess"/>
    <target description="Extracts all bundled libraries." depends="init,deps-jar,conditional-clean" name="extract-libs">
    <mkdir dir="${build.classes.dir}"/>
    <nb-extract excludeManifest="true" dir="${build.classes.dir}">
    <classpath>
    <path path="${libs.classpath}"/>
    </classpath>
    </nb-extract>
    </target>
    <target name="pre-compile"/>
    <target description="Compile project classes." depends="init,preprocess,extract-libs,pre-compile" name="compile">
    <mkdir dir="${build.classes.dir}"/>
    <javac encoding="${javac.encoding}" bootclasspath="${platform.bootclasspath}" srcdir="${preprocessed.dir}" destdir="${build.classes.dir}" debug="${javac.debug}" optimize="${javac.optimize}" deprecation="${javac.deprecation}" target="${javac.target}" source="${javac.source}" includeantruntime="false">
    <classpath>
    <path path="${libs.classpath}"/>
    </classpath>
    </javac>
    <copy todir="${build.classes.dir}">
    <fileset excludes="${filter.excludes.evaluated},${build.classes.excludes}" defaultexcludes="${filter.use.standard}" dir="${src.dir}"/>
    </copy>
    <antcall inheritrefs="true" inheritall="true" target="post-compile"/>
    </target>
    <target name="post-compile"/>
    <target name="pre-compile-single"/>
    <target description="Compile selected project classes." depends="init,preprocess,extract-libs,pre-compile-single" name="compile-single">
    <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
    <mkdir dir="${build.classes.dir}"/>
    <javac encoding="${javac.encoding}" includes="${javac.includes}" bootclasspath="${platform.bootclasspath}" destdir="${build.classes.dir}" srcdir="${preprocessed.dir}" debug="${javac.debug}" optimize="${javac.optimize}" deprecation="${javac.deprecation}" target="${javac.target}" source="${javac.source}" includeantruntime="false">
    <classpath>
    <path path="${libs.classpath}"/>
    </classpath>
    </javac>
    <antcall inheritrefs="true" inheritall="true" target="post-compile-single"/>
    </target>
    <target name="post-compile-single"/>
    <target depends="init" name="create-jad">
    <mkdir dir="${build.dir}"/>
    <dirname property="dist.jad.dir" file="${dist.dir}/${dist.jad}"/>
    <mkdir dir="${dist.jad.dir}"/>
    <condition value="${manifest.apipermissions}" property="evaluated.manifest.apipermissions">
    <not>
    <equals arg2="MIDP-1.0" arg1="${platform.profile}"/>
    </not>
    </condition>
    <condition value="${manifest.pushregistry}" property="evaluated.manifest.pushregistry">
    <not>
    <equals arg2="MIDP-1.0" arg1="${platform.profile}"/>
    </not>
    </condition>
    <condition property="contains.manifest.configuration">
    <contains string="${manifest.others}" substring="MicroEdition-Configuration: "/>
    </condition>
    <condition property="contains.manifest.profile">
    <contains string="${manifest.others}" substring="MicroEdition-Profile: "/>
    </condition>
    <property name="evaluated.manifest.apipermissions" value=""/>
    <property name="evaluated.manifest.pushregistry" value=""/>
    <property value="" name="manifest.jad"/>
    <property value="" name="manifest.manifest"/>
    <echo file="${dist.dir}/${dist.jad}">${manifest.midlets}${evaluated.manifest.apipermissions}${evaluated.manifest.pushregistry}${manifest.others}${manifest.jad}</echo>
    <echo file="${build.dir}/manifest.mf">${manifest.midlets}${evaluated.manifest.apipermissions}${evaluated.manifest.pushregistry}${manifest.others}${manifest.manifest}</echo>
    <antcall inheritrefs="true" inheritall="true" target="add-configuration"/>
    <antcall inheritrefs="true" inheritall="true" target="add-profile"/>
    </target>
    <target unless="contains.manifest.configuration" name="add-configuration">
    <echo append="true" file="${dist.dir}/${dist.jad}">MicroEdition-Configuration: ${platform.configuration}
    </echo>
    <echo append="true" file="${build.dir}/manifest.mf">MicroEdition-Configuration: ${platform.configuration}
    </echo>
    </target>
    <target unless="contains.manifest.profile" name="add-profile">
    <echo append="true" file="${dist.dir}/${dist.jad}">MicroEdition-Profile: ${platform.profile}
    </echo>
    <echo append="true" file="${build.dir}/manifest.mf">MicroEdition-Profile: ${platform.profile}
    </echo>
    </target>
    <target name="pre-obfuscate"/>
    <target description="Up-to-date check before obfuscation." depends="init,compile" name="obfuscate-check">
    <uptodate targetfile="${obfuscator.destjar}" property="no.obfusc">
    <srcfiles dir="${build.classes.dir}"/>
    </uptodate>
    </target>
    <target unless="no.obfusc" description="Obfuscate project classes." depends="init,compile,obfuscate-check,pre-obfuscate" name="obfuscate">
    <dirname property="obfuscator.srcjar.dir" file="${obfuscator.srcjar}"/>
    <dirname property="obfuscator.destjar.dir" file="${obfuscator.destjar}"/>
    <mkdir dir="${obfuscator.srcjar.dir}"/>
    <mkdir dir="${obfuscator.destjar.dir}"/>
    <jar basedir="${build.classes.dir}" jarfile="${obfuscator.srcjar}"/>
    <property value="" name="obfuscation.custom"/>
    <nb-obfuscate extraScript="${obfuscation.custom}" obfuscationLevel="${obfuscation.level}" classpath="${platform.bootclasspath}" obfuscatorclasspath="${obfuscator.classpath}" destjar="${obfuscator.destjar}" srcjar="${obfuscator.srcjar}"/>
    <mkdir dir="${obfuscated.classes.dir}"/>
    <unjar dest="${obfuscated.classes.dir}" src="${obfuscator.destjar}"/>
    <antcall inheritrefs="true" inheritall="true" target="post-obfuscate"/>
    </target>
    <target name="post-obfuscate"/>
    <target name="pre-preverify"/>
    <target description="Preverify project classes." depends="init,compile,obfuscate,pre-preverify" name="preverify">
    <mkdir dir="${preverify.classes.dir}"/>
    <nb-preverify commandline="${platform.preverifycommandline}" platformtype="${platform.type}" platformhome="${platform.home}" configuration="${platform.configuration}" classpath="${platform.bootclasspath}" destdir="${preverify.classes.dir}" srcdir="${obfuscated.classes.dir}"/>
    <antcall inheritrefs="true" inheritall="true" target="post-preverify"/>
    </target>
    <target name="post-preverify"/>
    <target unless="skip-sign-keystore-password-input" if="netbeans.home" depends="init" name="set-keystore-password">
    <nb-enter-password passwordproperty="sign.keystore.password" keystore="${sign.keystore}"/>
    </target>
    <target unless="skip-sign-alias-password-input" if="netbeans.home" depends="init" name="set-alias-password">
    <nb-enter-password passwordproperty="sign.alias.password" keyalias="${sign.alias}" keystore="${sign.keystore}"/>
    </target>
    <target name="pre-jar"/>
    <target description="Build jar and application descriptor." depends="init,preverify,create-jad,set-keystore-password,set-alias-password,pre-jar" name="jar">
    <dirname property="dist.jar.dir" file="${dist.dir}/${dist.jar}"/>
    <mkdir dir="${dist.jar.dir}"/>
    <jar manifest="${build.dir}/manifest.mf" jarfile="${dist.dir}/${dist.jar}" compress="${jar.compress}">
    <fileset dir="${preverify.classes.dir}"/>
    <fileset dir="${obfuscated.classes.dir}">
    <exclude name="**/*.class"/>
    </fileset>
    </jar>
    <nb-jad aliaspassword="${sign.alias.password}" alias="${sign.alias}" keystorepassword="${sign.keystore.password}" keystore="${sign.keystore}" sign="${sign.enabled}" url="${dist.jar}" jarfile="${dist.dir}/${dist.jar}" jadfile="${dist.dir}/${dist.jad}"/>
    <antcall inheritrefs="true" inheritall="true" target="post-jar"/>
    </target>
    <target name="post-jar"/>
    <target description="Rebuild the application." depends="init,clean,jar" name="rebuild"/>
    <target description="Run MIDlet suite." depends="init,jar" name="run">
    <nb-run commandline="${platform.runcommandline}" securitydomain="${evaluated.run.security.domain}" execmethod="${run.method}" platformtype="${platform.type}" platformhome="${platform.home}" device="${platform.device}" jadurl="${dist.jad.url}" jadfile="${dist.dir}/${dist.jad}"/>
    </target>
    <target description="Quick Run already built MIDlet suite." depends="init" name="run-no-build">
    <nb-run commandline="${platform.runcommandline}" securitydomain="${evaluated.run.security.domain}" execmethod="${run.method}" platformtype="${platform.type}" platformhome="${platform.home}" device="${platform.device}" jadurl="${dist.jad.url}" jadfile="${dist.dir}/${dist.jad}"/>
    </target>
    <target depends="init,clean,jar" description="Debug project." name="debug">
    <delete file="${preprocessed.dir}/.timestamp"/>
    <parallel>
    <nb-run commandline="${platform.debugcommandline}" securitydomain="${evaluated.run.security.domain}" execmethod="${run.method}" jadfile="${dist.dir}/${dist.jad}" device="${platform.device}" platformhome="${platform.home}" platformtype="${platform.type}" debuggeraddressproperty="jpda.port" debugserver="true" debugsuspend="true" debug="true"/>
    <sequential>
    <sleep seconds="5"/>
    <antcall target="nbdebug"/>
    </sequential>
    </parallel>
    </target>
    <target if="netbeans.home" description="Start NetBeans debugger" name="nbdebug">
    <nb-kjava-debug period="2000" timeout="30000" name="${app.codename}" address="${jpda.port}">
    <bootclasspath>
    <path path="${platform.bootclasspath}"/>
    </bootclasspath>
    <classpath>
    <path path="${dist.dir}/${dist.jar}"/>
    </classpath>
    <sourcepath>
    <path path="${src.dir}"/>
    <path path="${libs.src.path}"/>
    </sourcepath>
    </nb-kjava-debug>
    </target>
    <target depends="init,preprocess" name="javadoc">
    <mkdir dir="${dist.javadoc.dir}"/>
    <javadoc private="${javadoc.private}" windowtitle="${javadoc.windowtitle}" version="${javadoc.version}" author="${javadoc.author}" splitindex="${javadoc.splitindex}" noindex="${javadoc.noindex}" nonavbar="${javadoc.nonavbar}" use="${javadoc.use}" notree="${javadoc.notree}" bootclasspath="${platform.bootclasspath}" destdir="${dist.javadoc.dir}" source="${javac.source}">
    <classpath>
    <path path="${libs.classpath}"/>
    </classpath>
    <sourcepath>
    <pathelement location="${preprocessed.dir}"/>
    </sourcepath>
    <fileset dir="${preprocessed.dir}"/>
    </javadoc>
    <antcall target="browse-javadoc"/>
    </target>
    <target unless="no.javadoc.preview" if="netbeans.home" name="browse-javadoc">
    <nbbrowse file="${dist.javadoc.dir}/index.html"/>
    </target>
    <target name="pre-clean"/>
    <target description="Clean build products." if="no.clean.before.build" depends="init,conditional-clean" name="clean">
    <antcall inheritrefs="true" inheritall="true" target="do-clean"/>
    </target>
    <target depends="pre-clean" name="do-clean">
    <delete dir="${preprocessed.dir}"/>
    <delete dir="${build.classes.dir}"/>
    <delete file="${obfuscator.srcjar}"/>
    <delete file="${obfuscator.destjar}"/>
    <delete dir="${obfuscated.classes.dir}"/>
    <delete dir="${preverify.classes.dir}"/>
    <delete file="${build.dir}/manifest.mf"/>
    <delete file="${dist.dir}/${dist.jar}"/>
    <delete file="${dist.dir}/${dist.jad}"/>
    <delete dir="${dist.javadoc.dir}"/>
    <antcall inheritrefs="true" inheritall="true" target="post-clean"/>
    </target>
    <target name="post-clean"/>
    <target name="pre-deploy"/>
    <target if="deployment.do.override.jarurl" depends="init,jar,pre-deploy" name="override-jad">
    <property value="${dist.jar}" name="deployment.jarurl"/>
    <nb-jad aliaspassword="${sign.alias.password}" alias="${sign.alias}" keystorepassword="${sign.keystore.password}" keystore="${sign.keystore}" sign="${sign.enabled}" url="${deployment.jarurl}" jarfile="${dist.dir}/${dist.jar}" jadfile="${dist.dir}/${dist.jad}"/>
    </target>
    <target unless="skip.deployment" if="deployment.method" depends="init,jar,override-jad,pre-deploy" name="deploy">
    <fail unless="deployment.scriptfile">Property deployment.${deployment.method}.scriptfile not set. The property should point to an Ant script providing ${deployment.method} deployment.</fail>
    <ant inheritrefs="true" inheritall="true" antfile="${deployment.scriptfile}">
    <property location="${dist.dir}/${dist.jad}" name="deployment.jad"/>
    <property location="${dist.dir}/${dist.jar}" name="deployment.jar"/>
    </ant>
    <propertyfile file="nbproject/private/private.properties">
    <entry pattern="000000" default="2" operation="+" type="int" key="deployment.counter"/>
    <entry value="${deployment.counter}" key="deployment.number"/>
    </propertyfile>
    <replaceregexp replace="deployment.number=\2\3.\5\6.\8\9" match="^deployment.number=[0-9]*(0|([1-9]))([0-9])(0|([1-9]))([0-9])(0|([1-9]))([0-9])$" file="nbproject/private/private.properties" byline="true"/>
    <antcall inheritrefs="true" inheritall="true" target="post-deploy"/>
    </target>
    <target name="post-deploy"/>
    <target name="for-all-configs">
    <antcall inheritrefs="false" inheritall="false" target="${target.to.call}">
    <param value="" name="config.active"/>
    </antcall>
    </target>
    <target name="jar-all">
    <antcall target="for-all-configs">
    <param value="jar" name="target.to.call"/>
    </antcall>
    </target>
    <target name="javadoc-all">
    <antcall target="for-all-configs">
    <param value="javadoc" name="target.to.call"/>
    </antcall>
    </target>
    <target name="deploy-all">
    <antcall target="for-all-configs">
    <param value="deploy" name="target.to.call"/>
    </antcall>
    </target>
    <target name="rebuild-all">
    <antcall target="for-all-configs">
    <param value="rebuild" name="target.to.call"/>
    </antcall>
    </target>
    <target depends="load-properties" name="clean-all">
    <fail unless="build.root.dir">Property build.root.dir is not set. By default its value should be \"build\".</fail>
    <fail unless="dist.root.dir">Property dist.root.dir is not set. By default its value should be \"dist\".</fail>
    <delete dir="${build.root.dir}"/>
    <delete dir="${dist.root.dir}"/>
    <antcall target="for-all-configs">
    <param value="clean" name="target.to.call"/>
    </antcall>
    </target>
    </project>
    I have pasted the content of that file, please do the needs....

  • How can we generate the java doc for default package

    hello....
    i using Netbeans 6.5 with JDK 1.5 and JRE 1.6. I generated comment and selected generate javadoc option from Netbeans.
    It genearted javadoc for all packages except the default package.Please help me to generate javadoc for default package.

    You need to pass in source filenames (rather than package names) with the javadoc command on the command line. (I don't know if this can be done in NetBeans)
    "I have refined this fix to handle classes in unnamed packages. A link with the label <unnamed package> now appears at the top of the packge list when classes in unnamed packages are specified on the command line."
    stddoclet: Include package info when passing in source filenames (*.java)
    10-Fix Delivered,
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4359386
    Also see:
    stddoclet: Want default (i.e. unnamed) package to appear in package list
    11-Closed, duplicate of 4359386
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4213968

  • Netbeans 5.0 crashes... please help..

    Hi, i just installed netbeans 5.0 with the latest java package. When i first execute the program, it crashes. Below is the error log. Can anyone help me? This is not the first time. I already uninstall and reinstall java and reinstalling netbeans. This same outcome.
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00d18280, pid=3352, tid=3872
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_06-b05 mixed mode, sharing)
    # Problematic frame:
    # J java.awt.GradientPaintContext.clipFillRaster([IIIIIDDD)V
    --------------- T H R E A D ---------------
    Current thread (0x030081e0): JavaThread "AWT-EventQueue-1" [_thread_in_Java, id=3872]
    siginfo: ExceptionCode=0xc0000005, reading address 0xffffffff
    Registers:
    EAX=0x1cadd928, EBX=0x00000000, ECX=0x1cb53c80, EDX=0x00000000
    ESP=0x0365e4f8, EBP=0x0365e528, ESI=0x00000000, EDI=0x00000020
    EIP=0x00d18280, EFLAGS=0x00010246
    Top of Stack: (sp=0x0365e4f8)
    0x0365e4f8: 00000000 00000000 00000000 00000000
    0x0365e508: 00ad29fa 00000001 1cadd934 00000000
    0x0365e518: 00000000 ffffffff 1c71c71c 3fbc71c7
    0x0365e528: 0365e588 00d8e3eb 1c71c71c 3fac71c7
    0x0365e538: 00000000 00000000 1c71c71c 3fbc71c7
    0x0365e548: 00000000 00000020 00000000 00000000
    0x0365e558: 1cadd928 1cb53c80 0365e5ac 00000000
    0x0365e568: 00000000 1cadd928 00000000 00000000
    Instructions: (pc=0x00d18280)
    0x00d18270: dd 45 18 dd 5d f8 8b 7d 24 dd 45 f8 d9 ee d9 c9
    0x00d18280: df e9 dd c0 d9 f7 0f 8a 06 00 00 00 0f 86 0e 00
    Stack: [0x03620000,0x03660000), sp=0x0365e4f8, free space=249k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    J java.awt.GradientPaintContext.clipFillRaster([IIIIIDDD)V
    J java.awt.GradientPaintContext.getRaster(IIII)Ljava/awt/image/Raster;
    J sun.java2d.pipe.AlphaPaintPipe.renderPathTile(Ljava/lang/Object;[BIIIIII)V
    j sun.java2d.pipe.SpanShapeRenderer$Composite.renderBox(Ljava/lang/Object;IIII)V+15
    j sun.java2d.pipe.SpanShapeRenderer.spanClipLoop(Ljava/lang/Object;Lsun/java2d/pipe/SpanIterator;Lsun/java2d/pipe/Region;[I)V+56
    j sun.java2d.pipe.SpanShapeRenderer.renderSpans(Lsun/java2d/SunGraphics2D;Lsun/java2d/pipe/Region;Ljava/awt/Shape;Lsun/java2d/pipe/ShapeSpanIterator;)V+131
    j sun.java2d.pipe.SpanShapeRenderer.renderPath(Lsun/java2d/SunGraphics2D;Ljava/awt/Shape;)V+43
    j sun.java2d.pipe.SpanShapeRenderer.fill(Lsun/java2d/SunGraphics2D;Ljava/awt/Shape;)V+33
    j sun.java2d.pipe.PixelToShapeConverter.fillPolygon(Lsun/java2d/SunGraphics2D;[I[II)V+14
    j sun.java2d.pipe.ValidatePipe.fillPolygon(Lsun/java2d/SunGraphics2D;[I[II)V+17
    j sun.java2d.SunGraphics2D.fillPolygon([I[II)V+8
    j java.awt.Graphics.fillPolygon(Ljava/awt/Polygon;)V+13
    j org.netbeans.swing.tabcontrol.plaf.WinXPEditorTabCellRenderer.paintGradient(Ljava/awt/Graphics;Lorg/netbeans/swing/tabcontrol/plaf/WinXPEditorTabCellRenderer;Lorg/netbeans/swing/tabcontrol/plaf/TabPainter;)V+39
    j org.netbeans.swing.tabcontrol.plaf.WinXPEditorTabCellRenderer.access$700(Ljava/awt/Graphics;Lorg/netbeans/swing/tabcontrol/plaf/WinXPEditorTabCellRenderer;Lorg/netbeans/swing/tabcontrol/plaf/TabPainter;)V+3
    j org.netbeans.swing.tabcontrol.plaf.WinXPEditorTabCellRenderer$WinXPPainter.paintInterior(Ljava/awt/Graphics;Ljava/awt/Component;)V+8
    j org.netbeans.swing.tabcontrol.plaf.AbstractTabCellRenderer.paintComponent(Ljava/awt/Graphics;)V+27
    j javax.swing.JComponent.paint(Ljava/awt/Graphics;)V+260
    j org.netbeans.swing.tabcontrol.plaf.BasicTabDisplayerUI.paint(Ljava/awt/Graphics;Ljavax/swing/JComponent;)V+404
    j javax.swing.plaf.ComponentUI.update(Ljava/awt/Graphics;Ljavax/swing/JComponent;)V+32
    j javax.swing.JComponent.paintComponent(Ljava/awt/Graphics;)V+26
    j javax.swing.JComponent.paint(Ljava/awt/Graphics;)V+260
    J javax.swing.JComponent.paintChildren(Ljava/awt/Graphics;)V
    v ~RuntimeStub::alignment_frame_return Runtime1 stub
    j javax.swing.JComponent.paint(Ljava/awt/Graphics;)V+292
    J javax.swing.JComponent.paintChildren(Ljava/awt/Graphics;)V
    v ~RuntimeStub::alignment_frame_return Runtime1 stub
    j javax.swing.JComponent.paint(Ljava/awt/Graphics;)V+292
    J javax.swing.JComponent.paintChildren(Ljava/awt/Graphics;)V
    v ~RuntimeStub::alignment_frame_return Runtime1 stub
    j javax.swing.JComponent.paint(Ljava/awt/Graphics;)V+292
    J javax.swing.JComponent.paintChildren(Ljava/awt/Graphics;)V
    j javax.swing.JComponent.paint(Ljava/awt/Graphics;)V+292
    j org.netbeans.core.windows.view.ui.MultiSplitPane.paint(Ljava/awt/Graphics;)V+2
    J javax.swing.JComponent.paintChildren(Ljava/awt/Graphics;)V
    v ~RuntimeStub::alignment_frame_return Runtime1 stub
    j javax.swing.JComponent.paint(Ljava/awt/Graphics;)V+292
    J javax.swing.JComponent.paintChildren(Ljava/awt/Graphics;)V
    j javax.swing.JComponent.paint(Ljava/awt/Graphics;)V+292
    j javax.swing.JLayeredPane.paint(Ljava/awt/Graphics;)V+73
    J javax.swing.JComponent.paintChildren(Ljava/awt/Graphics;)V
    v ~RuntimeStub::alignment_frame_return Runtime1 stub
    j javax.swing.JComponent.paint(Ljava/awt/Graphics;)V+292
    J javax.swing.JComponent.paintChildren(Ljava/awt/Graphics;)V
    v ~RuntimeStub::alignment_frame_return Runtime1 stub
    j javax.swing.JComponent.paint(Ljava/awt/Graphics;)V+292
    J javax.swing.JComponent.paintChildren(Ljava/awt/Graphics;)V
    j javax.swing.JComponent.paint(Ljava/awt/Graphics;)V+292
    j javax.swing.JLayeredPane.paint(Ljava/awt/Graphics;)V+73
    J javax.swing.JComponent.paintChildren(Ljava/awt/Graphics;)V
    j javax.swing.JComponent.paint(Ljava/awt/Graphics;)V+292
    j javax.swing.JComponent.paintWithOffscreenBuffer(Ljavax/swing/JComponent;Ljava/awt/Graphics;IIIILjava/awt/Image;)V+174
    j javax.swing.JComponent.paintDoubleBuffered(Ljavax/swing/JComponent;Ljava/awt/Component;Ljava/awt/Graphics;IIII)Z+131
    J javax.swing.JComponent._paintImmediately(IIII)V
    j javax.swing.JComponent.paintImmediately(IIII)V+83
    j javax.swing.RepaintManager.paintDirtyRegions()V+314
    j javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run()V+32
    j java.awt.event.InvocationEvent.dispatch()V+47
    j java.awt.EventQueue.dispatchEvent(Ljava/awt/AWTEvent;)V+26
    J java.awt.EventDispatchThread.pumpOneEventForHierarchy(ILjava/awt/Component;)Z
    v ~RuntimeStub::alignment_frame_return Runtime1 stub
    j java.awt.EventDispatchThread.pumpEventsForHierarchy(ILjava/awt/Conditional;Ljava/awt/Component;)V+26
    j java.awt.EventDispatchThread.pumpEvents(ILjava/awt/Conditional;)V+4
    j java.awt.EventDispatchThread.pumpEvents(Ljava/awt/Conditional;)V+3
    j java.awt.EventDispatchThread.run()V+9
    v ~StubRoutines::call_stub
    V [jvm.dll+0x845a9]
    V [jvm.dll+0xd9317]
    V [jvm.dll+0x8447a]
    V [jvm.dll+0x841d7]
    V [jvm.dll+0x9ed69]
    V [jvm.dll+0x109fe3]
    V [jvm.dll+0x109fb1]
    C [MSVCRT.dll+0x2a3b0]
    C [kernel32.dll+0xb50b]
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x02d1d188 JavaThread "Image Fetcher 1" daemon [_thread_blocked, id=216]
    0x02d00d90 JavaThread "Image Fetcher 0" daemon [_thread_blocked, id=3472]
    0x0302df18 JavaThread "Inactive RequestProcessor thread [Was:Parsing Event Queue/org.netbeans.modules.javacore.JMManager$5]" daemon [_thread_blocked, id=3532]
    0x032ac270 JavaThread "Inactive RequestProcessor thread [Was:Default RequestProcessor/org.netbeans.modules.editor.errorstripe.AnnotationView$RepaintTask]" daemon [_thread_blocked, id=2444]
    0x032d7dd0 JavaThread "Inactive RequestProcessor thread [Was:Default RequestProcessor/org.netbeans.modules.navigator.NavigatorController$ActNodeSetter]" daemon [_thread_blocked, id=2364]
    0x02f42500 JavaThread "Inactive RequestProcessor thread [Was:ToolTip-Evaluator/org.netbeans.modules.editor.NbToolTip$Request]" daemon [_thread_blocked, id=1060]
    0x02ced900 JavaThread "Inactive RequestProcessor thread [Was:Overriddens Queue/org.netbeans.modules.java.OverrideAnnotationSupport$Request]" daemon [_thread_blocked, id=3868]
    0x02e1d7d0 JavaThread "MDR event dispatcher" daemon [_thread_blocked, id=3996]
    0x00037b60 JavaThread "DestroyJavaVM" [_thread_blocked, id=900]
    =>0x030081e0 JavaThread "AWT-EventQueue-1" [_thread_in_Java, id=3872]
    0x031ebb28 JavaThread "TimerQueue" daemon [_thread_blocked, id=2448]
    0x031d2b80 JavaThread "Inactive RequestProcessor thread [Was:ListModelSupport loader/org.netbeans.modules.java.navigation.spi.ListModelSupport$Loader]" daemon [_thread_blocked, id=1836]
    0x031a6dd8 JavaThread "Inactive RequestProcessor thread [Was:Java Node State Updater/org.netbeans.modules.java.JavaNode$StateUpdater]" daemon [_thread_blocked, id=1788]
    0x0316cb90 JavaThread "Inactive RequestProcessor thread [Was:ToolTip-Evaluator/org.netbeans.modules.editor.NbToolTip$Request]" daemon [_thread_blocked, id=3228]
    0x02f3d390 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=3456]
    0x00acf638 JavaThread "AWT-Windows" daemon [_thread_in_native, id=628]
    0x02ecd948 JavaThread "AWT-Shutdown" [_thread_blocked, id=2720]
    0x00acd950 JavaThread "Timer-0" daemon [_thread_blocked, id=1852]
    0x02cd8820 JavaThread "CLI Requests Server" daemon [_thread_in_native, id=1340]
    0x00ab7a70 JavaThread "Active Reference Queue Daemon" daemon [_thread_blocked, id=2492]
    0x00a70268 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3004]
    0x00a6eed8 JavaThread "CompilerThread0" daemon [_thread_blocked, id=3440]
    0x00a6e1c0 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=3444]
    0x0003fa20 JavaThread "Finalizer" daemon [_thread_blocked, id=3492]
    0x00a48aa0 JavaThread "Reference Handler" daemon [_thread_blocked, id=2580]
    Other Threads:
    0x00a68428 VMThread [id=3628]
    0x00a714b8 WatcherThread [id=3752]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 2304K, used 914K [0x1ca70000, 0x1ccf0000, 0x1d440000)
    eden space 2048K, 44% used [0x1ca70000, 0x1cb54868, 0x1cc70000)
    from space 256K, 0% used [0x1cc70000, 0x1cc70000, 0x1ccb0000)
    to space 256K, 0% used [0x1ccb0000, 0x1ccb0000, 0x1ccf0000)
    tenured generation total 30272K, used 16957K [0x1d440000, 0x1f1d0000, 0x24a70000)
    the space 30272K, 56% used [0x1d440000, 0x1e4cf758, 0x1e4cf800, 0x1f1d0000)
    compacting perm gen total 32768K, used 21094K [0x24a70000, 0x26a70000, 0x2aa70000)
    the space 32768K, 64% used [0x24a70000, 0x25f098f0, 0x25f09a00, 0x26a70000)
    ro space 8192K, 66% used [0x2aa70000, 0x2afcbcc0, 0x2afcbe00, 0x2b270000)
    rw space 12288K, 46% used [0x2b270000, 0x2b812060, 0x2b812200, 0x2be70000)
    Dynamic libraries:
    0x00400000 - 0x0040c000 C:\Program Files\Java\jdk1.5.0_06\jre\bin\java.exe
    0x7c900000 - 0x7c9b0000 C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f4000 C:\WINDOWS\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000 C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000 C:\WINDOWS\system32\RPCRT4.dll
    0x77c10000 - 0x77c68000 C:\WINDOWS\system32\MSVCRT.dll
    0x6d6e0000 - 0x6d874000 C:\Program Files\Java\jdk1.5.0_06\jre\bin\client\jvm.dll
    0x77d40000 - 0x77dd0000 C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f56000 C:\WINDOWS\system32\GDI32.dll
    0x76b40000 - 0x76b6d000 C:\WINDOWS\system32\WINMM.dll
    0x6d2f0000 - 0x6d2f8000 C:\Program Files\Java\jdk1.5.0_06\jre\bin\hpi.dll
    0x76bf0000 - 0x76bfb000 C:\WINDOWS\system32\PSAPI.DLL
    0x6d6b0000 - 0x6d6bc000 C:\Program Files\Java\jdk1.5.0_06\jre\bin\verify.dll
    0x6d370000 - 0x6d38d000 C:\Program Files\Java\jdk1.5.0_06\jre\bin\java.dll
    0x6d6d0000 - 0x6d6df000 C:\Program Files\Java\jdk1.5.0_06\jre\bin\zip.dll
    0x6d530000 - 0x6d543000 C:\Program Files\Java\jdk1.5.0_06\jre\bin\net.dll
    0x71ab0000 - 0x71ac7000 C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000 C:\WINDOWS\system32\WS2HELP.dll
    0x76d60000 - 0x76d79000 C:\WINDOWS\system32\iphlpapi.dll
    0x76d40000 - 0x76d58000 C:\WINDOWS\system32\MPRAPI.dll
    0x77cc0000 - 0x77cf2000 C:\WINDOWS\system32\ACTIVEDS.dll
    0x76e10000 - 0x76e35000 C:\WINDOWS\system32\adsldpc.dll
    0x5b860000 - 0x5b8b4000 C:\WINDOWS\system32\NETAPI32.dll
    0x76f60000 - 0x76f8c000 C:\WINDOWS\system32\WLDAP32.dll
    0x76b20000 - 0x76b31000 C:\WINDOWS\system32\ATL.DLL
    0x774e0000 - 0x7761c000 C:\WINDOWS\system32\ole32.dll
    0x77120000 - 0x771ac000 C:\WINDOWS\system32\OLEAUT32.dll
    0x76e80000 - 0x76e8e000 C:\WINDOWS\system32\rtutils.dll
    0x71bf0000 - 0x71c03000 C:\WINDOWS\system32\SAMLIB.dll
    0x77920000 - 0x77a13000 C:\WINDOWS\system32\SETUPAPI.dll
    0x71a50000 - 0x71a8f000 C:\WINDOWS\system32\mswsock.dll
    0x662b0000 - 0x66308000 C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000 C:\WINDOWS\System32\wshtcpip.dll
    0x76f20000 - 0x76f47000 C:\WINDOWS\system32\DNSAPI.dll
    0x76fb0000 - 0x76fb8000 C:\WINDOWS\System32\winrnr.dll
    0x76fc0000 - 0x76fc6000 C:\WINDOWS\system32\rasadhlp.dll
    0x0ffd0000 - 0x0fff8000 C:\WINDOWS\system32\rsaenh.dll
    0x769c0000 - 0x76a73000 C:\WINDOWS\system32\USERENV.dll
    0x6d070000 - 0x6d1d7000 C:\Program Files\Java\jdk1.5.0_06\jre\bin\awt.dll
    0x73000000 - 0x73026000 C:\WINDOWS\system32\WINSPOOL.DRV
    0x76390000 - 0x763ad000 C:\WINDOWS\system32\IMM32.dll
    0x5ad70000 - 0x5ada8000 C:\WINDOWS\system32\uxtheme.dll
    0x73760000 - 0x737a9000 C:\WINDOWS\system32\ddraw.dll
    0x73bc0000 - 0x73bc6000 C:\WINDOWS\system32\DCIMAN32.dll
    0x73940000 - 0x73a10000 C:\WINDOWS\system32\D3DIM700.DLL
    0x10000000 - 0x10005000 C:\WINDOWS\BricoPacks\Vista Inspirat\ObjectDock\DockShellHook.dll
    0x74720000 - 0x7476b000 C:\WINDOWS\system32\MSCTF.dll
    0x03510000 - 0x0351f000 C:\WINDOWS\BricoPacks\Vista Inspirat\YzToolbar\YzToolBar.dll
    0x5d090000 - 0x5d127000 C:\WINDOWS\system32\COMCTL32.dll
    0x7c9c0000 - 0x7e77e000 C:\WINDOWS\system32\shell32.dll
    0x77f60000 - 0x77ff7000 C:\WINDOWS\system32\SHLWAPI.dll
    0x773d0000 - 0x774d2000 C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\comctl32.dll
    0x6d2b0000 - 0x6d2ed000 C:\Program Files\Java\jdk1.5.0_06\jre\bin\fontmanager.dll
    0x6d550000 - 0x6d559000 C:\Program Files\Java\jdk1.5.0_06\jre\bin\nio.dll
    0x605d0000 - 0x605d9000 C:\WINDOWS\system32\mslbui.dll
    0x71b20000 - 0x71b32000 C:\WINDOWS\system32\MPR.dll
    0x75f60000 - 0x75f67000 C:\WINDOWS\System32\drprov.dll
    0x71c10000 - 0x71c1e000 C:\WINDOWS\System32\ntlanman.dll
    0x71cd0000 - 0x71ce7000 C:\WINDOWS\System32\NETUI0.dll
    0x71c90000 - 0x71cd0000 C:\WINDOWS\System32\NETUI1.dll
    0x71c80000 - 0x71c87000 C:\WINDOWS\System32\NETRAP.dll
    0x75f70000 - 0x75f79000 C:\WINDOWS\System32\davclnt.dll
    0x77b40000 - 0x77b62000 C:\WINDOWS\system32\appHelp.dll
    0x76fd0000 - 0x7704f000 C:\WINDOWS\system32\CLBCATQ.DLL
    0x77050000 - 0x77115000 C:\WINDOWS\system32\COMRes.dll
    0x77c00000 - 0x77c08000 C:\WINDOWS\system32\VERSION.dll
    0x76980000 - 0x76988000 C:\WINDOWS\system32\LINKINFO.dll
    0x03bc0000 - 0x03c09000 C:\WINDOWS\system32\ntshrui.dll
    VM Arguments:
    jvm_args: -Dnetbeans.importclass=org.netbeans.upgrade.AutoUpgrade -Dnetbeans.accept_license_class=org.netbeans.license.AcceptLicense -Xms32m -Xmx128m -XX:PermSize=32m -XX:MaxPermSize=96m -Xverify:none -Dapple.laf.useScreenMenuBar=true -Dnetbeans.osenv=C:\DOCUME~1\M996F~1.KHA\LOCALS~1\Temp\nbenv3 -Dnetbeans.osenv.nullsep=true -Djdk.home=C:\Program Files\Java\jdk1.5.0_06 -Dnetbeans.home=C:\Program Files\netbeans-5.0\platform6 -Dnetbeans.dirs=C:\Program Files\netbeans-5.0\nb5.0;C:\Program Files\netbeans-5.0\ide6;C:\Program Files\netbeans-5.0\enterprise2;C:\Program Files\netbeans-5.0\harness -Dnetbeans.user=C:\Documents and Settings\M.Khalid\.netbeans\5.0 -Dnetbeans.system_http_proxy=DIRECT -Dsun.awt.keepWorkingSetOnMinimize=true
    java_command: org/netbeans/Main --branding nb
    Launcher Type: SUN_STANDARD
    Environment Variables:
    CLASSPATH=.
    PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Common Files\Adobe\AGL;C:\Program Files\QuickTime\QTSystem\ ; C:\Program Files\Java\jre1.5.0_06\bin
    USERNAME=M.Khalid
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 13 Stepping 6, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 1 family 6, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 514544k(100160k free), swap 1258580k(883052k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_06-b05) for windows-x86, built on Nov 10 2005 11:12:14 by "java_re" with MS VC++ 6.0

    Did you try asking Netbeans support too?

Maybe you are looking for

  • New Mac Mini / DVI / Apple 17" Studio Display

    Greetings all. I am contemplating purchasing new Mac Mini. Currently using Mac mini / DVI adapter/ older Apple 17" studio display. I do not intend monitor change at present. Question is, which display adapter would allow me to use older DVI adapter/A

  • CR XI R2: Salesforce 3.0 driver on Windows 7 64-bit?

    Hello.  I have CR XI r2 SP6 with the Salesforce 3.0 driver running on Windows 7 64-bit.  When I try to connect to Salesforce, I get an error message "Invalid argument provided.  java server setup failure.  Please verify the PATH etc etc etc.  Please

  • Is anyone having issues importing Keynote presentation from imac to ipad?

    Hi There, I paid a company to do a presentation for me,  it was created in powerpoint, i downloaded Keynote for mac to import it into keynote on ipad, problem is that it does not recognise some of the fonts and the sizing is different, the base layou

  • Trigger di On_Commit

    I'm call a procedure (from trigger On_Commit) that insert and update a DB table, from a window that have two blocks: The first(Master) all composed by Unbound Items. The Second Blok(Details) is based on an non-updatable View, and one field for select

  • Getting redirect notice when i click on an image in google image search. why? how do i stop this?

    for instance, a search for chris niemczyk gets me his pics but when i click on one, i get this page: The previous page is sending you to http://emfan18.tripod.com/niemczyk.htm. If you do not want to visit that page, you can return to the previous pag