facebook

JavaScript blocks inacessible

  1. MyEclipse Archived
  2.  > 
  3. Bugs
Viewing 15 posts - 1 through 15 (of 17 total)
  • Author
    Posts
  • #214960 Reply

    Whenever I open a JSP file with JavaScript code, contained within the <script> tag, it is impossible to access the inside the script block. You can position the cursor inside it, but cannot modify it.

    This also occurs to the other developer on my team.

    I am using Eclipse 3.0 with MyEclipse 3.8.1.

    #214974

    Riyad Kalla
    Member

    Can you post a file that exhibits this behavior and we can file it as a bug?

    I have tried to duplicate this behavior with the source from msn.com, google.com, yahoo.com and microsoft.com and cannot reproduce the problem. I copy-pasted the entire page source intoa JSP file, tried to edit the <script> sections and it worked. Then saved the file and reopened it and tried again, and it worked.

    What are the BuildIDs of Eclipse (Help > About) and MyEclipse (Window > Prefs > MyEclipse) that you both are running?

    #214989

    Thanks for the response.
    Eclipse version: Version: 3.0.0, Build id: 200406251208
    MyEclipse: 3.8.1+QF20040825
    Build Id: 200408201200-3.8.1+QF20040825

    The code:

    <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
      <head>
        
        <title>Service Finder Administration :: Offerings Manager - Select Categories</title>
        
        <meta http-equiv="pragma" content="no-cache">
        <meta http-equiv="cache-control" content="no-cache">
        <meta http-equiv="expires" content="0">
        
        <link rel="stylesheet" type="text/css" href="../styles/system.css">
       
        <script language="javascript" type="text/javascript">
            
            var cs_id = <c:out value="${requestScope.cs_id}" default="${param.cs_id}" />;
            var pc_id = <c:out value="${requestScope.pc_id}" default="${param.pc_id}" />;
            var cp_id = <c:out value="${requestScope.cp_id}" default="${param.cp_id}" />;
            var on_net = <c:out value="${requestScope.on_net}" default="${param.on_net}" />;
        
            function remove_service(cserv_id)
            {
                if(confirm("Are you sure you want to remove this service from this state?\nThis will result in the removal of all the features associated with this service."))
                {
                    window.location="action?action=remove_state_service&pc_id=" + pc_id + "&on_net=" + on_net + "&cs_id=" + cs_id + "&cp_id=" + cp_id + "&cserv_id=" + cserv_id;
                }
            }
            
            function add_service(cserv_id)
            {
                window.location="action?action=add_state_service&pc_id=" + pc_id + "&on_net=" + on_net + "&cs_id=" + cs_id + "&cp_id=" + cp_id + "&cserv_id=" + cserv_id;
            }
            
            function do_back()
            {
                window.location="action?action=product_offering_manager&pc_id=" + pc_id + "&cs_id=" + cs_id + "&cp_id" + cp_id + "&on_net=" + on_net;
            }
            
            function do_next(cserv_id)
            {
                window.location="action?action=feature_offering_manager&pc_id=" + pc_id + "&on_net=" + on_net + "&cs_id=" + cs_id + "&cp_id=" + cp_id + "&cserv_id=" + cserv_id;
            }    
        </script>
      </head>
      
      <body class="second_level">
            <table border="0" cellpadding="5" cellspacing="0" width="500">
            <tr>
                <td class="nav_header" colspan="2" align="left">Product Finder :: Manage  Offerings</td>
            </tr>
            <tr>
                <td align="left" colspan="2">
                    <input type="button" class="forminput" value="< Back" onclick="do_back();" />
            <tr>
                <td colspan="2" align="left" class="form_title">
                    <span style="font-weight: bold">
                        <c:out value="${requestScope.cs_name}"  /> :: <c:out value="${requestScope.pc_name}" /> 
                        <c:choose>
                            <c:when test="${requestScope.on_net == 1}">[ON NET]</c:when>
                            <c:otherwise>[OFF NET]</c:otherwise>
                         </c:choose>
                        :: <c:out value="${requestScope.cp_name}" />
                    </span>
                </td>
            </tr>        
            <%-- check if there is a system response to an action --%>
            <c:if test="${!empty requestScope.feedback}">
                <tr>
                    <td colspan="2" align="center" class="confirm_text">
                        <c:out value="${requestScope.feedback}" />
                    </td>
                </tr>
            </c:if>
            <tr>
                <td class="nav_header_second" colspan="2" align="left">
                    Existing Services
                </td>
            </tr>
            <c:choose>
                <c:when test="${requestScope.associatedRecordCount == 0}">
                    <tr>
                        <td colspan="2" align="center" class="header_brown">
                        There are no services currently set up for this state and category in the system
                        </td>
                    </tr>            
                </c:when>
                <c:otherwise>
                    <c:forEach items="${requestScope.QryAssociatedServices}" var="row">
                    <tr>
                        <td class="nav" align="left">
                            <c:out value="${row.cserv_name}" />                        
                        </td>
                        <td class="nav" align="right">
                            <input type="button" class="forminput" value="Remove" onclick="remove_service(<c:out value="${row.cserv_id}" />);" />
                            <input type="button" class="forminput" value="Next >" onclick="do_next(<c:out value="${row.cserv_id}" />);" />
                        </td>                    
                    </tr>
                    </c:forEach>
                </c:otherwise>
            </c:choose>
            <tr>
                <td class="nav_header_second" colspan="2" align="left">
                    Available Services
                </td>
            </tr>
            <c:choose>
                <c:when test="${requestScope.nonAssociatedRecordCount == 0}">
                    <tr>
                        <td colspan="2" align="center" class="header_brown">
                        There are no services currently that are not set up for this state and category in the system
                        </td>
                    </tr>            
                </c:when>
                <c:otherwise>
                    <c:forEach items="${requestScope.QryNonAssociatedServices}" var="row">
                    <tr>
                        <td class="nav" align="left">
                            <c:out value="${row.cserv_name}" />                        
                        </td>
                        <td class="nav" align="right">
                            <input type="button" class="forminput" value="Add" onclick="add_service(<c:out value="${row.cserv_id}" />);" />
                        </td>
                    </tr>
                    </c:forEach>
                </c:otherwise>
            </c:choose>    
            </table>
      </body>
    </html>
    
    #214997

    Riyad Kalla
    Member

    This page works fine for me as well…

    Can you provide me some OS info, JDK info, etc… that might be the cause of this?

    #215098

    OS: Windows XP SP1
    java.runtime.version=1.4.2_04-b05

    The full listing:
    *** Date: 9/13/04 1:46 PM

    *** Platform Details:

    *** System properties:
    awt.toolkit=sun.awt.windows.WToolkit
    eclipse.application=org.eclipse.ui.ide.workbench
    eclipse.buildId=I200406251208
    eclipse.commands=-os
    win32
    -ws
    win32
    -arch
    x86
    -showsplash
    C:\Program Files\eclipse\eclipse.exe -showsplash 600
    -exitdata
    C:\Program Files\eclipse\eclipse.exe -exitdata ddc_8c
    -vm
    C:\WINDOWS\system32\javaw.exe

    eclipse.product=org.eclipse.platform.ide
    eclipse.startTime=1095084485801
    eclipse.vm=C:\WINDOWS\system32\javaw.exe
    eclipse.vmargs=-cp
    C:\Program Files\eclipse\startup.jar
    org.eclipse.core.launcher.Main

    eof=eof
    file.encoding=Cp1252
    file.encoding.pkg=sun.io
    file.separator=\
    java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob=sun.awt.windows.WPrinterJob
    java.class.path=C:\Program Files\eclipse\startup.jar
    java.class.version=48.0
    java.endorsed.dirs=C:\Program Files\Java\j2re1.4.2_04\lib\endorsed
    java.ext.dirs=C:\Program Files\Java\j2re1.4.2_04\lib\ext
    java.home=C:\Program Files\Java\j2re1.4.2_04
    java.io.tmpdir=C:\DOCUME~1\YZUKER~1\LOCALS~1\Temp\
    java.library.path=C:\WINDOWS\system32;.;C:\WINDOWS\System32;C:\WINDOWS;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;C:\j2sdk1.4.2_04\bin\;C:\ots\apache-ant-1.6.1\bin;C:\Program Files\SecureCRT\;C:\Program Files\Common Files\GTK\2.0\bin;C:\Program Files\OpenSSH\bin
    java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
    java.runtime.version=1.4.2_04-b05
    java.specification.name=Java Platform API Specification
    java.specification.vendor=Sun Microsystems Inc.
    java.specification.version=1.4
    java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory
    java.vendor=Sun Microsystems Inc.
    java.vendor.url=http://java.sun.com/
    java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi
    java.version=1.4.2_04
    java.vm.info=mixed mode
    java.vm.name=Java HotSpot(TM) Client VM
    java.vm.specification.name=Java Virtual Machine Specification
    java.vm.specification.vendor=Sun Microsystems Inc.
    java.vm.specification.version=1.0
    java.vm.vendor=Sun Microsystems Inc.
    java.vm.version=1.4.2_04-b05
    line.separator=

    org.eclipse.jdt.debug.ui.scrapbookActive=false
    org.osgi.framework.executionenvironment=
    org.osgi.framework.language=en
    org.osgi.framework.os.name=WindowsXP
    org.osgi.framework.os.version=5.1
    org.osgi.framework.processor=x86
    org.osgi.framework.vendor=Eclipse
    org.osgi.framework.version=1.2.0
    org.xml.sax.driver=org.apache.crimson.parser.XMLReaderImpl
    os.arch=x86
    os.name=Windows XP
    os.version=5.1
    osgi.arch=x86
    osgi.bundles=org.eclipse.core.runtime@2:start, org.eclipse.update.configurator@3:start
    osgi.bundles.defaultStartLevel=4
    osgi.bundlestore=c:\Program Files\eclipse\configuration\org.eclipse.osgi\bundles
    osgi.configuration.area=file:/c:/Program Files/eclipse/configuration/
    osgi.framework=file:/c:/Program Files/eclipse/plugins/org.eclipse.osgi_3.0.0/
    osgi.framework.beginningstartlevel=1
    osgi.framework.version=3.0.0
    osgi.frameworkClassPath=core.jar, console.jar, osgi.jar, resolver.jar, defaultAdaptor.jar, eclipseAdaptor.jar
    osgi.install.area=file:/c:/Program Files/eclipse/
    osgi.instance.area=file:/C:/Program Files/eclipse/workspace/
    osgi.logfile=C:\Program Files\eclipse\workspace\.metadata\.log
    osgi.manifest.cache=c:\Program Files\eclipse\configuration\org.eclipse.osgi\manifests
    osgi.nl=en_US
    osgi.os=win32
    osgi.splashLocation=c:\Program Files\eclipse\plugins\org.eclipse.platform_3.0.0\splash.bmp
    osgi.splashPath=platform:/base/plugins/org.eclipse.platform
    osgi.ws=win32
    path.separator=;
    sun.arch.data.model=32
    sun.boot.class.path=C:\Program Files\Java\j2re1.4.2_04\lib\rt.jar;C:\Program Files\Java\j2re1.4.2_04\lib\i18n.jar;C:\Program Files\Java\j2re1.4.2_04\lib\sunrsasign.jar;C:\Program Files\Java\j2re1.4.2_04\lib\jsse.jar;C:\Program Files\Java\j2re1.4.2_04\lib\jce.jar;C:\Program Files\Java\j2re1.4.2_04\lib\charsets.jar;C:\Program Files\Java\j2re1.4.2_04\classes
    sun.boot.library.path=C:\Program Files\Java\j2re1.4.2_04\bin
    sun.cpu.endian=little
    sun.cpu.isalist=pentium i486 i386
    sun.io.unicode.encoding=UnicodeLittle
    sun.java2d.fontpath=
    sun.os.patch.level=Service Pack 1
    user.country=US
    user.dir=C:\Program Files\eclipse
    user.home=C:\Documents and Settings\yzukerman
    user.language=en
    user.name=yzukerman
    user.timezone=America/New_York
    user.variant=
    vendor=Apache Software Foundation
    vendor-url=http://xml.apache.org/xalan-j
    version=2.4.1

    *** Features:
    com.genuitec.myeclipse.ast (3.8.1) “MyEclipse Application Server Tooling”
    com.genuitec.myeclipse.core (3.8.1) “MyEclipse Core Tooling”
    com.genuitec.myeclipse.enterprise (3.8.1) “MyEclipse Enterprise Workbench”
    com.genuitec.myeclipse.help (3.8.1) “MyEclipse Help Documentation”
    com.genuitec.myeclipse.wdt (3.8.1) “MyEclipse Web Development Tooling”
    org.eclipse.jdt (3.0.0) “Eclipse Java Development Tools”
    org.eclipse.jdt.source (3.0.0) “Eclipse Java Development Tools SDK”
    org.eclipse.pde (3.0.0) “Eclipse Plug-in Development Environment”
    org.eclipse.pde.source (3.0.0) “Eclipse Plug-in Development Environment Developer Resources”
    org.eclipse.platform (3.0.0) “Eclipse Platform”
    org.eclipse.platform.source (3.0.0) “Eclipse Platform Plug-in Developer Resources”
    org.eclipse.sdk (3.0.0) “Eclipse Project SDK”

    *** Plug-in Registry:
    com.genuitec.eclipse.ast.deploy.core (3.8.1) “Deployment Core Plug-in”
    com.genuitec.eclipse.browser (3.8.1) “Web Browser Plug-in”
    com.genuitec.eclipse.core (3.8.1) “Genuitec Core”
    com.genuitec.eclipse.cross.easystruts.eclipse (3.8.1) “Stuts Support”
    com.genuitec.eclipse.easie.bejy (3.8.1) “Genuitec EASIE Bejy Tiger”
    com.genuitec.eclipse.easie.core (3.8.1) “Genuitec EASIE Core”
    com.genuitec.eclipse.easie.jboss (3.8.1) “Genuitec EASIE JBoss”
    com.genuitec.eclipse.easie.jboss2 (3.8.1) “Genuitec EASIE JBoss 2”
    com.genuitec.eclipse.easie.jboss3 (3.8.1) “Genuitec EASIE JBoss 3”
    com.genuitec.eclipse.easie.jboss4 (3.8.1) “Genuitec EASIE JBoss 4”
    com.genuitec.eclipse.easie.jetty (3.8.1) “Genuitec EASIE Jetty”
    com.genuitec.eclipse.easie.jetty4 (3.8.1) “Genuitec EASIE Jetty 4”
    com.genuitec.eclipse.easie.jetty5 (3.8.1) “Genuitec EASIE Jetty 5”
    com.genuitec.eclipse.easie.jonas (3.8.1) “Genuitec EASIE Jonas”
    com.genuitec.eclipse.easie.jonas3 (3.8.1) “Genuitec EASIE Jonas 3”
    com.genuitec.eclipse.easie.jrun (3.8.1) “Genuitec EASIE JRun”
    com.genuitec.eclipse.easie.jrun4 (3.8.1) “Genuitec EASIE JRun 4”
    com.genuitec.eclipse.easie.oracle (3.8.1) “Genuitec EASIE Oracle AS”
    com.genuitec.eclipse.easie.oracle9 (3.8.1) “Genuitec EASIE Oracle 9i/AS”
    com.genuitec.eclipse.easie.orion1 (3.8.1) “Genuitec EASIE Orion 1”
    com.genuitec.eclipse.easie.orion2 (3.8.1) “Genuitec EASIE Orion 2”
    com.genuitec.eclipse.easie.resin (3.8.1) “Genuitec EASIE Resin”
    com.genuitec.eclipse.easie.resin2 (3.8.1) “Genuitec EASIE Resin 2”
    com.genuitec.eclipse.easie.resin3 (3.8.1) “Genuitec EASIE Resin 3”
    com.genuitec.eclipse.easie.sun (3.8.1) “Genuitec EASIE Sun One”
    com.genuitec.eclipse.easie.sun8 (3.8.1) “Genuitec EASIE Sun 8”
    com.genuitec.eclipse.easie.tomcat (3.8.1) “Genuitec EASIE Tomcat”
    com.genuitec.eclipse.easie.tomcat4 (3.8.1) “Genuitec EASIE Tomcat 4”
    com.genuitec.eclipse.easie.tomcat5 (3.8.1) “Genuitec EASIE Tomcat 5”
    com.genuitec.eclipse.easie.weblogic (3.8.1) “Genuitec EASIE WebLogic”
    com.genuitec.eclipse.easie.weblogic6 (3.8.1) “Genuitec EASIE WebLogic 6”
    com.genuitec.eclipse.easie.weblogic7 (3.8.1) “Genuitec EASIE WebLogic 7”
    com.genuitec.eclipse.easie.weblogic8 (3.8.1) “Genuitec EASIE WebLogic 8”
    com.genuitec.eclipse.easie.websphere (3.8.1) “Genuitec EASIE WebSphere 4”
    com.genuitec.eclipse.easie.websphere5 (3.8.1) “Genuitec EASIE WebSphere 5”
    com.genuitec.eclipse.hibernate (3.8.1) “Hibernate Plug-in”
    com.genuitec.eclipse.j2eedt.core (3.8.1) “Genuitec J2EE Development Tooling”
    com.genuitec.eclipse.jface.text.wtpfragment (3.8.1) “Wtpextendfragment Fragment”
    com.genuitec.eclipse.jsf (3.8.1) “JSF Plug-in”
    com.genuitec.eclipse.sqlexplorer (3.8.1) “MyEclipse Database Explorer Plugin”
    com.genuitec.eclipse.sqlexplorer.doc (3.8.1) “MyEclipse Database Explorer Help Plug-in”
    com.genuitec.eclipse.struts (3.8.1) “com.genuitec.eclipse.struts”
    com.genuitec.eclipse.wdt.jsp.debug (3.8.1) “MyEclipse JSP Debug Tooling”
    com.genuitec.eclipse.web.imagepreviewer (3.8.1) “MyEclipse Image Previewer Plug-in”
    com.genuitec.eclipse.webdesigner (3.8.1) “Web Designer Plug-in”
    com.genuitec.eclipse.webdesigner.support (3.8.1) “WebDesigner Support”
    com.genuitec.eclipse.wizards (3.8.1) “Aston Wizards for MyEclipse”
    com.genuitec.eclipse.xmen (3.8.1) “MyEclipse XML Editor”
    com.genuitec.eclipsetidy (3.8.1) “MyEclipse HTML Formatting”
    com.genuitec.jboss.ide.eclipse.apache.xalan (3.8.1) “Genuitec XDoclet Apache Xalan Plug-in”
    com.genuitec.jboss.ide.eclipse.core (3.8.1) “Genuitec XDoclet Support Core Plug-in”
    com.genuitec.jboss.ide.eclipse.xdoclet.assist (3.8.1) “Genuitec XDoclet Assist Plug-in”
    com.genuitec.jboss.ide.eclipse.xdoclet.core (3.8.1) “Genuitec XDoclet Core Plug-in”
    com.genuitec.jboss.ide.eclipse.xdoclet.run (3.8.1) “Genuitec XDoclet Runner Plug-in”
    com.genuitec.jboss.ide.eclipse.xdoclet.ui (3.8.1) “Genuitec XDoclet UI Plug-in”
    com.genuitec.myeclipse.ast (3.8.1) “MyEclipse Application Server Tooling”
    com.genuitec.myeclipse.core (3.8.1) “MyEclipse Core Tooling”
    com.genuitec.myeclipse.doc (3.8.1) “MyEclipse Documentation Plug-in”
    com.genuitec.myeclipse.enterprise (3.8.1) “MyEclipse Enterprise Workbench”
    com.genuitec.myeclipse.help (3.8.1) “MyEclipse Help Documentation”
    com.genuitec.myeclipse.perspective (3.8.1) “MyEclipse Perspective Plug-in”
    com.genuitec.myeclipse.wdt (3.8.1) “MyEclipse Web Development Tooling”
    com.ibm.base.extensions (13.8.1) “Eclipse base extensions”
    com.ibm.base.extensions.ui (13.8.1) “Eclipse Base UI extensions”
    com.ibm.encoding.resource (13.8.1) “Coded Resource”
    com.ibm.etools.contentmodel (13.8.1) “Content Model”
    com.ibm.etools.contentmodel.dtd (13.8.1) “Content Model for DTD”
    com.ibm.etools.contentmodel.xsd (13.8.1) “Content Model for XML Schema”
    com.ibm.etools.dtdmodel (13.8.1) “DTD Model”
    com.ibm.etools.dtdparser (13.8.1) “DTD Parser”
    com.ibm.etools.internet (13.8.1) “Internet Preferences”
    com.ibm.etools.uri.resolver (13.8.1) “com.ibm.etools.uri.resolver”
    com.ibm.etools.validation (13.8.1) “Validation Framework”
    com.ibm.etools.validation.core (13.8.1) “Validation Framework Core”
    com.ibm.etools.validation.dtd (13.8.1) “DTD Validator”
    com.ibm.etools.validation.html (13.8.1) “HTML Validation”
    com.ibm.etools.validation.mof (13.8.1) “Validation Framework MOF support”
    com.ibm.etools.validation.ui (13.8.1) “Validation Framework UI”
    com.ibm.etools.validation.xml (13.8.1) “XML Validator”
    com.ibm.etools.validation.xmltools (13.8.1) “XML Tools Validation”
    com.ibm.etools.validation.xsd (13.8.1) “XML Schema Validator”
    com.ibm.etools.xml.gef.util (13.8.1) “XML Tools Common GEF Utilities”
    com.ibm.etools.xmlcatalog (13.8.1) “com.ibm.etools.xmlcatalog”
    com.ibm.etools.xmlcatalog.ui (13.8.1) “XML Catalog UI”
    com.ibm.etools.xmlutility (13.8.1) “XML Utility”
    com.ibm.sse.contentproperties (13.8.1) “Content Properties”
    com.ibm.sse.editor (13.8.1) “MyEclipse Structured Source Editor”
    com.ibm.sse.editor.css (13.8.1) “SSE CSS Source Editor”
    com.ibm.sse.editor.dtd (13.8.1) “SSE DTD Source Editor”
    com.ibm.sse.editor.extensions (13.8.1) “Structured Source Editing Editor Extensions”
    com.ibm.sse.editor.html (13.8.1) “SSE HTML Source Editor”
    com.ibm.sse.editor.javascript (13.8.1) “SSE JavaScript Source Editor”
    com.ibm.sse.editor.jsp (13.8.1) “SSE JSP Source Editor”
    com.ibm.sse.editor.xml (13.8.1) “SSE XML Source Editor”
    com.ibm.sse.javascript.common.ui (13.8.1) “SSE JavaScript Common UI”
    com.ibm.sse.model (13.8.1) “Structured Text Model”
    com.ibm.sse.model.css (13.8.1) “Structured Source CSS Model”
    com.ibm.sse.model.dtd (13.8.1) “Structured Source DTD Model”
    com.ibm.sse.model.html (13.8.1) “Structured Source HTML Model”
    com.ibm.sse.model.javascript (13.8.1) “Structured Source JavaScript Model”
    com.ibm.sse.model.jsp (13.8.1) “Structured Source JSP Model”
    com.ibm.sse.model.xml (13.8.1) “Structured Source XML Model”
    com.ibm.sse.snippets (13.8.1) “SSE Snippets View”
    com.ibm.webtooling.system.dtds (13.8.1) “Known DTDs”
    com.ibm.wtp.annotations.controller (13.8.1) “Annotation Controller Plug-in”
    com.ibm.wtp.annotations.core (13.8.1) “Annotation Core Plug-in”
    com.ibm.wtp.annotations.ui (13.8.1) “Ui Plug-in”
    com.ibm.wtp.common (13.8.1) “com.ibm.wtp.common”
    com.ibm.wtp.common.ui (13.8.1) “WTP UI Plug-in”
    com.ibm.wtp.common.util (13.8.1) “Logging Plug-in”
    com.ibm.wtp.emf (13.8.1) “EMF Utilities”
    com.ibm.wtp.emf.workbench (13.8.1) “EMF Workbench”
    com.ibm.wtp.emf.workbench.edit (13.8.1) “EMF Workbench Edit Plug-in”
    com.ibm.wtp.jdt.integration (13.8.1) “Integration Plug-in”
    com.ibm.xmleditor (13.8.1) “SSE XML Editor”
    com.ibm.xmlwizard (13.8.1) “XML Wizards”
    com.ibm.xsdeditor (13.8.1) “MyEclipse Schema Editor”
    com.ibm.xtools.common.ui.properties (13.8.1) “IBM Rational Common UI Properties”
    com.rohanclan.cfml (1.1.15) “CFML Plug-in”
    de.bb.bje.eclipse (3.8.1) “BJE Plug-in”
    org.apache.ant (1.6.1) “Apache Ant”
    org.apache.lucene (1.3.0) “Apache Lucene”
    org.eclipse.ant.core (3.0.0) “Ant Build Tool Core”
    org.eclipse.ant.ui (3.0.0) “Ant UI”
    org.eclipse.compare (3.0.0) “Compare Support”
    org.eclipse.core.boot (3.0.0) “Core Boot”
    org.eclipse.core.expressions (3.0.0) “Expression Language”
    org.eclipse.core.filebuffers (3.0.0) “File Buffers”
    org.eclipse.core.resources (3.0.0) “Core Resource Management”
    org.eclipse.core.resources.win32 (3.0.0) “Core Resource Management Win32 Fragment”
    org.eclipse.core.runtime (3.0.0) “Core Runtime”
    org.eclipse.core.runtime.compatibility (3.0.0) “Core Runtime Plug-in Compatibility”
    org.eclipse.core.variables (3.0.0) “Core Variables”
    org.eclipse.debug.core (3.0.0) “Debug Core”
    org.eclipse.debug.ui (3.0.0) “Debug UI”
    org.eclipse.draw2d (3.0.0) “Draw2d”
    org.eclipse.emf.codegen (2.0.0) “EMF Template Code Generator”
    org.eclipse.emf.codegen.ecore (2.0.0) “EMF Ecore Code Generation”
    org.eclipse.emf.common (2.0.0) “EMF Common”
    org.eclipse.emf.common.ui (2.0.0) “EMF Common UI”
    org.eclipse.emf.ecore (2.0.0) “EMF Ecore”
    org.eclipse.emf.ecore.xmi (2.0.0) “EMF XMI”
    org.eclipse.emf.edit (2.0.0) “EMF Edit”
    org.eclipse.emf.edit.ui (2.0.0) “EMF Edit UI”
    org.eclipse.gef (3.0.0) “Graphical Editing Framework”
    org.eclipse.help (3.0.0) “Help System Core”
    org.eclipse.help.appserver (3.0.0) “Help Application Server”
    org.eclipse.help.base (3.0.0) “Help System Base”
    org.eclipse.help.ide (3.0.0) “Help System IDE”
    org.eclipse.help.ui (3.0.0) “Help System UI”
    org.eclipse.help.webapp (3.0.0) “Help System Webapp”
    org.eclipse.jdt (3.0.0) “Eclipse Java Development Tools”
    org.eclipse.jdt.core (3.0.0) “Java Development Tools Core”
    org.eclipse.jdt.debug (3.0.0) “JDI Debug Model”
    org.eclipse.jdt.debug.ui (3.0.0) “JDI Debug UI”
    org.eclipse.jdt.doc.isv (3.0.0) “Eclipse JDT Plug-in Developer Guide”
    org.eclipse.jdt.doc.user (3.0.0) “Eclipse Java Development User Guide”
    org.eclipse.jdt.junit (3.0.0) “Java Development Tools JUnit support”
    org.eclipse.jdt.junit.runtime (3.0.0) “Java Development Tools JUnit runtime support”
    org.eclipse.jdt.launching (3.0.0) “Java Development Tools Launching Support”
    org.eclipse.jdt.source (3.0.0) “Eclipse Java Development Tools SDK”
    org.eclipse.jdt.ui (3.0.0) “Java Development Tools UI”
    org.eclipse.jem (1.0.0) “Java EMF Model”
    org.eclipse.jem.proxy (1.0.0) “Java EMF Model Proxy Support”
    org.eclipse.jem.workbench (1.0.0) “Java EMF Model Workbench Support”
    org.eclipse.jface (3.0.0) “JFace”
    org.eclipse.jface.text (3.0.0) “JFace Text”
    org.eclipse.ltk.core.refactoring (3.0.0) “Refactoring Core”
    org.eclipse.ltk.ui.refactoring (3.0.0) “Refactoring UI”
    org.eclipse.monitor.core (13.8.1) “Monitor”
    org.eclipse.monitor.ui (13.8.1) “TCP/IP Monitor”
    org.eclipse.osgi (3.0.0) “OSGi System Bundle”
    org.eclipse.osgi.services (3.0.0) “OSGi Release 3 Services”
    org.eclipse.osgi.util (3.0.0) “OSGi R3 Utility Classes”
    org.eclipse.pde (3.0.0) “Eclipse Plug-in Development Environment”
    org.eclipse.pde.build (3.0.0) “Plug-in Development Environment Build Support”
    org.eclipse.pde.core (3.0.0) “Plug-in Development Core”
    org.eclipse.pde.doc.user (3.0.0) “Eclipse Plug-in Development User Guide”
    org.eclipse.pde.junit.runtime (3.0.0) “PDE JUnit Plug-in Test”
    org.eclipse.pde.runtime (3.0.0) “Plug-in Development Environment Runtime”
    org.eclipse.pde.source (3.0.0) “Eclipse Plug-in Development Environment Developer Resources”
    org.eclipse.pde.ui (3.0.0) “Plug-in Development UI”
    org.eclipse.platform (3.0.0) “Eclipse Platform”
    org.eclipse.platform.doc.isv (3.0.0) “Eclipse Platform Plug-in Developer Guide”
    org.eclipse.platform.doc.user (3.0.0) “Eclipse Workbench User Guide”
    org.eclipse.platform.source (3.0.0) “Eclipse Platform Plug-in Developer Resources”
    org.eclipse.platform.source.win32.win32.x86 (3.0.0) “Eclipse Platform Plug-in Developer Resources”
    org.eclipse.sdk (3.0.0) “Eclipse Project SDK”
    org.eclipse.search (3.0.0) “Search Support”
    org.eclipse.swt (3.0.0) “Standard Widget Toolkit”
    org.eclipse.swt.win32 (3.0.0) “Standard Widget Toolkit for Windows”
    org.eclipse.team.core (3.0.0) “Team Support Core”
    org.eclipse.team.cvs.core (3.0.0) “CVS Team Provider Core”
    org.eclipse.team.cvs.ssh (3.0.0) “CVS SSH Core”
    org.eclipse.team.cvs.ssh2 (3.0.0) “CVS SSH2”
    org.eclipse.team.cvs.ui (3.0.0) “CVS Team Provider UI”
    org.eclipse.team.ui (3.0.0) “Team Support UI”
    org.eclipse.text (3.0.0) “Text”
    org.eclipse.tomcat (4.1.30) “Tomcat Wrapper”
    org.eclipse.ui (3.0.0) “Eclipse UI”
    org.eclipse.ui.cheatsheets (3.0.0) “Cheat Sheets”
    org.eclipse.ui.console (3.0.0) “Console”
    org.eclipse.ui.editors (3.0.0) “Default Text Editor”
    org.eclipse.ui.externaltools (3.0.0) “External Tools”
    org.eclipse.ui.forms (3.0.0) “Eclipse Forms”
    org.eclipse.ui.ide (3.0.0) “Eclipse IDE UI”
    org.eclipse.ui.intro (3.0.0) “Intro Plugin”
    org.eclipse.ui.presentations.r21 (3.0.0) “R21 Presentation Plug-in”
    org.eclipse.ui.views (3.0.0) “Views”
    org.eclipse.ui.views.navigator (13.8.1) “Navigator View”
    org.eclipse.ui.win32 (3.0.0) “Win32 fragment”
    org.eclipse.ui.workbench (3.0.0) “Workbench”
    org.eclipse.ui.workbench.compatibility (3.0.0) “Workbench Compatibility”
    org.eclipse.ui.workbench.texteditor (3.0.0) “Text Editor Framework”
    org.eclipse.update.configurator (3.0.0) “Install/Update Configurator”
    org.eclipse.update.core (3.0.0) “Install/Update Core”
    org.eclipse.update.core.win32 (3.0.0) “Install/Update Core for Windows”
    org.eclipse.update.scheduler (3.0.0) “Automatic Updates Scheduler”
    org.eclipse.update.ui (3.0.0) “Install/Update UI”
    org.eclipse.webbrowser (13.8.1) “Web Browser”
    org.eclipse.xsd (2.0.0) “XML Schema Infoset Model (XSD)”
    org.eclipse.xsd.edit (2.0.0) “XML Schema Edit Framework”
    org.graysky.eclipse.logwatcher (1.3.2) “LogWatcher”
    org.junit (3.8.1) “JUnit Testing Framework”

    *** User Preferences:
    #Mon Sep 13 13:46:29 EDT 2004
    /instance/org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.MYECLIPSE_STRUTS_HOME=C\:/Program Files/MyEclipse3_8_1/eclipse/plugins/com.genuitec.eclipse.cross.easystruts.eclipse_3.8.1/data
    /instance/com.genuitec.eclipse.wizards/struct.set.2=java.util.HashSet
    /instance/com.genuitec.eclipse.wizards/struct.set.1=java.util.TreeSet
    /instance/org.eclipse.jdt.core/org.eclipse.jdt.core.builder.resourceCopyExclusionFilter=*.launch
    /instance/com.genuitec.eclipse.wizards/html.template.2.label=HTML template with a form
    /instance/com.genuitec.eclipse.wizards/jsp.template.1.label=Default JSP template
    /instance/com.genuitec.eclipse.easie.tomcat/JDK_INSTALLATION_NAME=j2re1.4.2_04
    /instance/com.genuitec.eclipse.wizards/list.template.2.label=Default template for List with object types
    /instance/com.genuitec.eclipse.wizards/singleton.template.2=Templates/Singleton2.java
    /instance/com.genuitec.eclipse.wizards/singleton.template.1=Templates/Singleton.java
    /instance/com.genuitec.eclipse.wizards/list.template.3.label=Default template for List with basic types WRAPPED

    @com
    .genuitec.eclipse.core=3.8.1
    /instance/com.genuitec.eclipse.easie.jetty4/JDK_INSTALLATION_NAME=j2re1.4.2_04

    @com
    .genuitec.eclipse.easie.oracle=3.8.1
    /instance/org.eclipse.ui/DOCK_PERSPECTIVE_BAR=topLeft
    /instance/com.genuitec.eclipse.easie.sun8/JDK_INSTALLATION_NAME=j2re1.4.2_04
    /instance/org.eclipse.jdt.ui/org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\=”1.0″ encoding\=”UTF-8″?>\r\n<templates><template id\=”org.eclipse.jdt.ui.text.codetemplates.typecomment” name\=”typecomment” description\=”Comment for created types” context\=”typecomment_context” enabled\=”true” deleted\=”false”>/**\r\n * @author ${user}\r\n *\r\n * (C) 2003-2004 RDW Group\r\n */</template><template id\=”org.eclipse.jdt.ui.text.codetemplates.newtype” name\=”newtype” description\=”Newly created files” context\=”newtype_context” enabled\=”true” deleted\=”false”>/*\r\n * Created on ${date} ${project_name} \r\n *\r\n */\r\n${package_declaration}\r\n\r\n${typecomment}\r\n${type_declaration}</template></templates>
    @org.eclipse.jdt.core=3.0.0
    /instance/com.genuitec.eclipse.easie.weblogic/JDK_INSTALLATION_NAME=j2re1.4.2_04
    /instance/org.eclipse.ui.workbench/editors=<?xml version\=”1.0″ encoding\=”UTF-8″?>\r\n<editors>\r\n<descriptor label\=”Scrapbook” image\=”icons/full/obj16/jsbook_obj.gif” class\=”org.eclipse.jdt.internal.debug.ui.snippeteditor.JavaSnippetEditor” id\=”org.eclipse.jdt.debug.ui.SnippetEditor” plugin\=”org.eclipse.jdt.debug.ui” openMode\=”1″ internal\=”true” open_in_place\=”false”/>\r\n<descriptor label\=”MyEclipse TLD Editor” image\=”icons/tld.gif” class\=”com.ibm.xmleditor.internal.XMLMultiPageEditorPart” id\=”org.xmen.ui.text.TLDTextEditor” plugin\=”com.ibm.xmleditor” openMode\=”1″ internal\=”true” open_in_place\=”false”/>\r\n<descriptor label\=”CFML Editor” image\=”icons/obj16/default.gif” class\=”com.rohanclan.cfml.editors.CFMLEditor” id\=”com.rohanclan.cfml.editors.CFMLEditor” plugin\=”com.rohanclan.cfml” openMode\=”1″ internal\=”true” open_in_place\=”false”/>\r\n<descriptor label\=”MyEclipse HTML Editor” image\=”icons/html.png” class\=”com.genuitec.eclipse.webdesigner.htmleditor.HTMLMultiPageEditorPart” id\=”com.genuitec.eclipse.webdesigner.htmleditor” plugin\=”com.genuitec.eclipse.webdesigner” openMode\=”1″ internal\=”true” open_in_place\=”false”/>\r\n<descriptor label\=”MyEclipse XML Editor” image\=”icons/xml.gif” class\=”com.ibm.xmleditor.internal.XMLMultiPageEditorPart” id\=”org.xmen.ui.text.XMLTextEditor” plugin\=”com.ibm.xmleditor” openMode\=”1″ internal\=”true” open_in_place\=”false”/>\r\n<descriptor label\=”MyEclipse DTD Editor” image\=”icons/dtd.gif” class\=”com.ibm.sse.editor.dtd.StructuredTextEditorDTD” id\=”org.xmen.multipageeditor.DTDEditor” plugin\=”com.ibm.sse.editor.dtd” openMode\=”1″ internal\=”true” open_in_place\=”false”/>\r\n<descriptor label\=”Ant Editor” image\=”icons/full/obj16/ant_buildfile.gif” class\=”org.eclipse.ant.internal.ui.editor.AntEditor” id\=”org.eclipse.ant.ui.internal.editor.AntEditor” plugin\=”org.eclipse.ant.ui” openMode\=”1″ internal\=”true” open_in_place\=”false”/>\r\n<descriptor label\=”JAR Description Editor” image\=”icons/full/obj16/jar_desc_obj.gif” class\=”org.eclipse.ui.editors.text.TextEditor” id\=”org.eclipse.jdt.ui.JARDescEditor” plugin\=”org.eclipse.jdt.ui” openMode\=”1″ internal\=”true” open_in_place\=”false”/>\r\n<descriptor label\=”MyEclipse JSP Editor” image\=”icons/jsp.png” class\=”com.genuitec.eclipse.webdesigner.jspeditor.JSPMultiPageEditorPart” id\=”com.genuitec.eclipse.webdesigner.jspeditor” plugin\=”com.genuitec.eclipse.webdesigner” openMode\=”1″ internal\=”true” open_in_place\=”false”/>\r\n<descriptor label\=”Java Editor” image\=”icons/full/obj16/jcu_obj.gif” class\=”org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditor” id\=”org.eclipse.jdt.ui.CompilationUnitEditor” plugin\=”org.eclipse.jdt.ui” openMode\=”1″ internal\=”true” open_in_place\=”false”/>\r\n<descriptor label\=”Class File Viewer” image\=”icons/full/obj16/classf_obj.gif” class\=”org.eclipse.jdt.internal.ui.javaeditor.ClassFileEditor” id\=”org.eclipse.jdt.ui.ClassFileEditor” plugin\=”org.eclipse.jdt.ui” openMode\=”1″ internal\=”true” open_in_place\=”false”/>\r\n<descriptor label\=”MyEclipse JavaScript Editor” image\=”icons/javascript.gif” class\=”com.ibm.sse.editor.javascript.JSMultiPageEditorPart” id\=”com.ibm.sse.editor.javascript.JSMultiPageEditorPart” plugin\=”com.ibm.sse.editor.javascript” openMode\=”1″ internal\=”true” open_in_place\=”false”/>\r\n<descriptor label\=”Extension Point Schema Editor” image\=”icons/obj16/schema_obj.gif” class\=”org.eclipse.pde.internal.ui.editor.schema.SchemaEditor” id\=”org.eclipse.pde.ui.schemaEditor” plugin\=”org.eclipse.pde.ui” openMode\=”1″ internal\=”true” open_in_place\=”false”/>\r\n<descriptor label\=”MyEclipse Web Browser” image\=”icons/obj16/internal_browser.gif” class\=”org.eclipse.webbrowser.internal.WebBrowserEditor” id\=”org.eclipse.webbrowser” plugin\=”org.eclipse.webbrowser” openMode\=”1″ internal\=”true” open_in_place\=”false”/>\r\n<descriptor label\=”Plug-in Manifest Editor” image\=”icons/obj16/plugin_mf_obj.gif” class\=”org.eclipse.pde.internal.ui.editor.plugin.ManifestEditor” id\=”org.eclipse.pde.ui.manifestEditor” plugin\=”org.eclipse.pde.ui” openMode\=”1″ internal\=”true” open_in_place\=”false”/>\r\n<descriptor label\=”Schema Viewer” image\=”icons/model.gif” class\=”com.genuitec.eclipse.sqlexplorer.gef.editors.SchemaEditor” id\=”com.genuitec.eclipse.sqlexplorer.gef.editors.SchemaEditor” plugin\=”com.genuitec.eclipse.sqlexplorer” openMode\=”1″ internal\=”true” open_in_place\=”false”/>\r\n<descriptor label\=”Site Manifest Editor” image\=”icons/obj16/site_xml_obj.gif” class\=”org.eclipse.pde.internal.ui.editor.site.SiteEditor” id\=”org.eclipse.pde.ui.siteEditor” plugin\=”org.eclipse.pde.ui” openMode\=”1″ internal\=”true” open_in_place\=”false”/>\r\n<descriptor label\=”Text Editor” image\=”icons/full/obj16/file_obj.gif” class\=”org.eclipse.ui.editors.text.TextEditor” id\=”org.eclipse.ui.DefaultTextEditor” plugin\=”org.eclipse.ui.editors” openMode\=”1″ internal\=”true” open_in_place\=”false”/>\r\n<descriptor label\=”MyEclipse Schema Editor” image\=”icons/XSDFile.gif” class\=”com.ibm.xsdeditor.internal.XSDEditor” id\=”com.ibm.xsdeditor.XSDEditor” plugin\=”com.ibm.xsdeditor” openMode\=”1″ internal\=”true” open_in_place\=”false”/>\r\n<descriptor label\=”Build Properties Editor” image\=”icons/obj16/build_exec.gif” class\=”org.eclipse.pde.internal.ui.editor.build.BuildEditor” id\=”org.eclipse.pde.ui.buildEditor” plugin\=”org.eclipse.pde.ui” openMode\=”1″ internal\=”true” open_in_place\=”false”/>\r\n<descriptor label\=”MyEclipse CSS Editor” image\=”icons/sourceEditor.gif” class\=”com.ibm.sse.editor.css.StructuredTextEditorCSS” id\=”com.ibm.sse.editor.css.StructuredTextEditorCSS” plugin\=”com.ibm.sse.editor.css” openMode\=”1″ internal\=”true” open_in_place\=”false”/>\r\n<descriptor label\=”Feature Manifest Editor” image\=”icons/obj16/ftr_xml_obj.gif” class\=”org.eclipse.pde.internal.ui.editor.feature.FeatureEditor” id\=”org.eclipse.pde.ui.featureEditor” plugin\=”org.eclipse.pde.ui” openMode\=”1″ internal\=”true” open_in_place\=”false”/>\r\n<descriptor label\=”MyEclipse SQL Editor” image\=”icons/sqlfile.gif” class\=”com.genuitec.eclipse.sqlexplorer.plugin.editors.SQLEditor” id\=”com.genuitec.eclipse.sqlexplorer.plugin.editors.SQLEditor” plugin\=”com.genuitec.eclipse.sqlexplorer” openMode\=”1″ internal\=”true” open_in_place\=”false”/>\r\n<descriptor label\=”Code Sample Editor” image\=”icons/obj16/build_exec.gif” class\=”org.eclipse.pde.ui.internal.samples.SampleEditor” id\=”org.eclipse.pde.ui.sampleEditor” plugin\=”org.eclipse.pde.ui” openMode\=”1″ internal\=”true” open_in_place\=”false”/>\r\n<descriptor label\=”MyEclipse Struts Editor” image\=”icons/editor.gif” class\=”com.genuitec.eclipse.struts.editor.multipage.StrutsConfigEditor” id\=”com.genuitec.eclipse.struts.editor.multipage.StrutsConfigEditor” plugin\=”com.genuitec.eclipse.struts” openMode\=”1″ internal\=”true” open_in_place\=”false”/>\r\n<descriptor label\=”Properties File Editor” image\=”icons/full/obj16/file_obj.gif” class\=”org.eclipse.ui.editors.text.TextEditor” id\=”org.eclipse.jdt.ui.DefaultTextEditor” plugin\=”org.eclipse.jdt.ui” openMode\=”1″ internal\=”true” open_in_place\=”false”/>\r\n</editors>\r\n

    @com
    .genuitec.eclipse.easie.jrun=3.8.1
    /instance/com.genuitec.eclipse.wizards/list.template.1.label=Default template for List with basic types (no List used)
    /instance/com.genuitec.eclipse.wizards/doctype.html.8=<\!DOCTYPE HTML PUBLIC “-//IETF//DTD LEVEL1//EN”>
    /instance/org.eclipse.team.cvs.core/repositories/%pserver%yuvalz@cvsdude.org%%cvs%yuvalz/location=\:pserver\:yuvalz@cvsdude.org\:/cvs/yuvalz
    /instance/com.genuitec.eclipse.wizards/doctype.html.7=<\!DOCTYPE HTML PUBLIC “-//IETF//DTD HTML//EN”>
    /instance/com.genuitec.eclipse.wizards/doctype.html.6=<\!DOCTYPE HTML PUBLIC “-//IETF//DTD HTML 3.0//EN”>
    /instance/com.ibm.sse.editor/useQuickDiffPrefPage=true
    /instance/com.genuitec.eclipse.wizards/doctype.html.5=<\!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 3.2 Final//EN”>
    /instance/com.genuitec.eclipse.wizards/doctype.html.4=<\!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.0//EN”>
    /instance/com.genuitec.eclipse.wizards/doctype.html.3=<\!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01//EN”>
    /instance/org.eclipse.ant.core/ant_home=C\:\\ots\\apache-ant-1.6.1
    /instance/com.genuitec.eclipse.wizards/doctype.html.2=<\!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Frameset//EN”>
    /instance/com.genuitec.eclipse.wizards/doctype.html.1=<\!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN”>
    /instance/com.genuitec.eclipse.easie.jboss/JDK_INSTALLATION_NAME=j2re1.4.2_04
    @org.eclipse.ant.core=3.0.0
    /instance/org.eclipse.jdt.core/org.eclipse.jdt.core.codeComplete.visibilityCheck=enabled
    /instance/org.eclipse.team.ui/org.eclipse.team.ui.sychronizing_default_participant=org.eclipse.team.cvs.ui.cvsworkspace-participant
    /instance/org.eclipse.ant.ui/useQuickDiffPrefPage=true
    /instance/com.genuitec.eclipse.wizards/enumeration.template.1.label=Default template for enumeration
    /instance/com.genuitec.eclipse.wizards/set.template.2.label=Default template for Set with object types
    @org.eclipse.team.ui=3.0.0
    /instance/com.genuitec.eclipse.easie.weblogic6/JDK_INSTALLATION_NAME=j2re1.4.2_04

    @com
    .genuitec.eclipse.easie.jonas=3.8.1
    /instance/org.eclipse.jdt.launching/org.eclipse.jdt.launching.PREF_VM_XML=<?xml version\=”1.0″ encoding\=”UTF-8″?>\r\n<vmSettings defaultVM\=”57,org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType1,0″ defaultVMConnector\=””>\r\n<vmType id\=”org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType”>\r\n<vm id\=”0″ name\=”j2re1.4.2_04″ path\=”C\:\\Program Files\\Java\\j2re1.4.2_04″ javadocURL\=”http\://java.sun.com/j2se/1.4.2/docs/api”/>\r\n</vmType>\r\n</vmSettings>\r\n
    /instance/com.genuitec.eclipse.wizards/set.template.2=Templates/SetObjectType.java
    /instance/com.genuitec.eclipse.wizards/set.template.1=Templates/SetBasicType.java
    @org.eclipse.team.cvs.core=3.0.0
    /instance/com.genuitec.eclipse.wizards/enumeration.template.1=Templates/Enumeration.java
    /instance/org.eclipse.team.ui/org.eclipse.team.ui.remove_from_view_without_prompt=true
    /instance/org.eclipse.team.cvs.ui/pref_first_startup=false

    @com
    .genuitec.eclipse.wizards=3.8.1
    \!/=
    /instance/com.genuitec.eclipse.wizards/set.template.1.label=Default template for Set with basic types

    @com
    .genuitec.eclipse.easie.weblogic=3.8.1

    @com
    .genuitec.eclipse.easie.sun8=3.8.1
    /instance/org.eclipse.jdt.ui/tabWidthPropagated=true
    /instance/com.genuitec.eclipse.easie.jetty5/JDK_INSTALLATION_NAME=j2re1.4.2_04
    /instance/com.genuitec.eclipse.easie.jetty/JDK_INSTALLATION_NAME=j2re1.4.2_04
    /instance/com.genuitec.eclipse.wizards/factory.template.1.label=Default template for factory
    @org.eclipse.ui.workbench=3.0.0
    /instance/org.eclipse.jdt.ui/org.eclipse.jdt.ui.text.code_templates_migrated=true

    @com
    .genuitec.eclipse.easie.sun=3.8.1
    /instance/org.eclipse.team.ui/org.eclipse.team.ui.sychronizing_default_participant_sec_id=1094741709723
    /instance/com.genuitec.eclipse.easie.bejy/JDK_INSTALLATION_NAME=j2re1.4.2_04

    @com
    .genuitec.eclipse.easie.resin3=3.8.1

    @com
    .genuitec.eclipse.easie.resin2=3.8.1
    @org.eclipse.ant.ui=3.0.0
    /instance/org.eclipse.jdt.core/org.eclipse.jdt.core.classpathContainer.CTC|org.eclipse.jdt.launching.JRE_CONTAINER=<?xml version\=”1.0″ encoding\=”UTF-8″?>\r\n<classpath>\r\n<classpathentry kind\=”lib” path\=”C\:/Program Files/Java/j2re1.4.2_04/lib/rt.jar”/>\r\n<classpathentry kind\=”lib” path\=”C\:/Program Files/Java/j2re1.4.2_04/lib/sunrsasign.jar”/>\r\n<classpathentry kind\=”lib” path\=”C\:/Program Files/Java/j2re1.4.2_04/lib/jsse.jar”/>\r\n<classpathentry kind\=”lib” path\=”C\:/Program Files/Java/j2re1.4.2_04/lib/jce.jar”/>\r\n<classpathentry kind\=”lib” path\=”C\:/Program Files/Java/j2re1.4.2_04/lib/charsets.jar”/>\r\n<classpathentry kind\=”lib” path\=”C\:/Program Files/Java/j2re1.4.2_04/lib/ext/dnsns.jar”/>\r\n<classpathentry kind\=”lib” path\=”C\:/Program Files/Java/j2re1.4.2_04/lib/ext/ldapsec.jar”/>\r\n<classpathentry kind\=”lib” path\=”C\:/Program Files/Java/j2re1.4.2_04/lib/ext/localedata.jar”/>\r\n<classpathentry kind\=”lib” path\=”C\:/Program Files/Java/j2re1.4.2_04/lib/ext/sunjce_provider.jar”/>\r\n</classpath>\r\n
    /instance/org.eclipse.ui/showIntro=false
    /instance/org.eclipse.team.ui/org.eclipse.team.ui.first_time=false
    /instance/com.genuitec.eclipse.wizards/applethtml.template.1=Templates/Applet.html
    /instance/com.genuitec.eclipse.easie.weblogic7/JDK_INSTALLATION_NAME=j2re1.4.2_04
    /instance/org.eclipse.help.ui/browser.maximized=false

    @com
    .genuitec.eclipse.easie.jrun4=3.8.1
    /instance/org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.MYECLIPSE_HIBERNATE_HOME=C\:/Program Files/MyEclipse3_8_1/eclipse/plugins/com.genuitec.eclipse.hibernate_3.8.1/data

    @com
    .genuitec.eclipse.easie.jboss=3.8.1

    @com
    .genuitec.eclipse.easie.jetty=3.8.1
    /instance/com.genuitec.eclipse.wizards/object.template.9.label=Default template for enumeration
    /instance/org.eclipse.jdt.ui/useQuickDiffPrefPage=true
    /instance/com.genuitec.eclipse.wizards/struct.list.4=java.util.Stack
    /instance/com.genuitec.eclipse.wizards/struct.list.3=java.util.LinkedList

    @com
    .genuitec.eclipse.cross.easystruts.eclipse=3.8.1
    /instance/com.genuitec.eclipse.wizards/struct.list.2=java.util.Vector
    /instance/com.genuitec.eclipse.wizards/struct.list.1=java.util.ArrayList

    @com
    .genuitec.eclipse.easie.weblogic8=3.8.1

    @com
    .genuitec.eclipse.easie.weblogic7=3.8.1

    @com
    .genuitec.eclipse.easie.weblogic6=3.8.1
    /instance/org.eclipse.webbrowser/internalWebBrowserOldFavorites=MyEclipse|*|http\://www.myeclipseide.com|*|Eclipse|*|http\://www.eclipse.org|*|
    /instance/com.genuitec.eclipse.wizards/singleton.template.2.label=Singleton with double-checked locking
    /instance/com.genuitec.eclipse.wizards/object.template.6.label=Default template for a Struts Action class
    @org.eclipse.jdt.ui=3.0.0
    /instance/com.genuitec.eclipse.wizards/list.template.3=Templates/ListBasicTypeAsObjectType.java
    /instance/com.genuitec.eclipse.wizards/object.template.7.label=Default template for a Struts DispatchAction class
    /instance/com.genuitec.eclipse.wizards/list.template.2=Templates/ListObjectType.java
    /instance/com.genuitec.eclipse.easie.weblogic8/JDK_INSTALLATION_NAME=j2re1.4.2_04
    @org.graysky.eclipse.logwatcher=1.3.2
    /instance/com.genuitec.eclipse.wizards/list.template.1=Templates/ListBasicType.java
    /instance/org.eclipse.ui.workbench/resourcetypes=<?xml version\=”1.0″ encoding\=”UTF-8″?>\r\n<editors>\r\n<info name\=”*” extension\=”jpage”>\r\n<editor id\=”org.eclipse.jdt.debug.ui.SnippetEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”tld”>\r\n<editor id\=”org.xmen.ui.text.TLDTextEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”cfm”>\r\n<editor id\=”com.rohanclan.cfml.editors.CFMLEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”shtm”>\r\n<editor id\=”com.genuitec.eclipse.webdesigner.htmleditor”/>\r\n</info>\r\n<info name\=”*” extension\=”fo”>\r\n<editor id\=”org.xmen.ui.text.XMLTextEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”ent”>\r\n<editor id\=”org.xmen.multipageeditor.DTDEditor”/>\r\n<editor id\=”org.eclipse.ant.ui.internal.editor.AntEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”xmi”>\r\n<editor id\=”org.xmen.ui.text.XMLTextEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”jardesc”>\r\n<editor id\=”org.eclipse.jdt.ui.JARDescEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”jsf”>\r\n<editor id\=”com.genuitec.eclipse.webdesigner.jspeditor”/>\r\n</info>\r\n<info name\=”*” extension\=”java”>\r\n<editor id\=”org.eclipse.jdt.ui.CompilationUnitEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”jspx”>\r\n<editor id\=”com.genuitec.eclipse.webdesigner.jspeditor”/>\r\n</info>\r\n<info name\=”*” extension\=”jhtml”>\r\n<editor id\=”com.genuitec.eclipse.webdesigner.htmleditor”/>\r\n</info>\r\n<info name\=”*” extension\=”class”>\r\n<editor id\=”org.eclipse.jdt.ui.ClassFileEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”js”>\r\n<editor id\=”com.ibm.sse.editor.javascript.JSMultiPageEditorPart”/>\r\n</info>\r\n<info name\=”*” extension\=”mxsd”>\r\n<editor id\=”org.eclipse.pde.ui.schemaEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”html”>\r\n<editor id\=”com.genuitec.eclipse.webdesigner.htmleditor”/>\r\n<editor id\=”com.rohanclan.cfml.editors.CFMLEditor”/>\r\n<editor id\=”org.eclipse.webbrowser”/>\r\n</info>\r\n<info name\=”*” extension\=”macrodef”>\r\n<editor id\=”org.eclipse.ant.ui.internal.editor.AntEditor”/>\r\n</info>\r\n<info name\=”plugin” extension\=”xml”>\r\n<editor id\=”org.eclipse.pde.ui.manifestEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”htm”>\r\n<editor id\=”com.genuitec.eclipse.webdesigner.htmleditor”/>\r\n<editor id\=”com.rohanclan.cfml.editors.CFMLEditor”/>\r\n<editor id\=”org.eclipse.webbrowser”/>\r\n</info>\r\n<info name\=”*” extension\=”sqls”>\r\n<editor id\=”com.genuitec.eclipse.sqlexplorer.gef.editors.SchemaEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”gif”>\r\n<editor id\=”org.eclipse.webbrowser”/>\r\n</info>\r\n<info name\=”build” extension\=”xml”>\r\n<editor id\=”org.eclipse.ant.ui.internal.editor.AntEditor”/>\r\n</info>\r\n<info name\=”site” extension\=”xml”>\r\n<editor id\=”org.eclipse.pde.ui.siteEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”txt”>\r\n<editor id\=”org.eclipse.ui.DefaultTextEditor”/>\r\n</info>\r\n<info name\=”fragment” extension\=”xml”>\r\n<editor id\=”org.eclipse.pde.ui.manifestEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”xml”>\r\n<editor id\=”org.xmen.ui.text.XMLTextEditor”/>\r\n<editor id\=”org.eclipse.webbrowser”/>\r\n</info>\r\n<info name\=”*” extension\=”mex”>\r\n<editor id\=”org.xmen.ui.text.XMLTextEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”xsd”>\r\n<editor id\=”com.ibm.xsdeditor.XSDEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”jpeg”>\r\n<editor id\=”org.eclipse.webbrowser”/>\r\n</info>\r\n<info name\=”MANIFEST” extension\=”MF”>\r\n<editor id\=”org.eclipse.pde.ui.manifestEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”jpg”>\r\n<editor id\=”org.eclipse.webbrowser”/>\r\n</info>\r\n<info name\=”*” extension\=”cfc”>\r\n<editor id\=”com.rohanclan.cfml.editors.CFMLEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”jspf”>\r\n<editor id\=”com.genuitec.eclipse.webdesigner.jspeditor”/>\r\n</info>\r\n<info name\=”*” extension\=”xslt”>\r\n<editor id\=”org.xmen.ui.text.XMLTextEditor”/>\r\n</info>\r\n<info name\=”build” extension\=”properties”>\r\n<editor id\=”org.eclipse.pde.ui.buildEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”jspv”>\r\n<editor id\=”com.genuitec.eclipse.webdesigner.jspeditor”/>\r\n</info>\r\n<info name\=”*” extension\=”css”>\r\n<editor id\=”com.ibm.sse.editor.css.StructuredTextEditorCSS”/>\r\n</info>\r\n<info name\=”feature” extension\=”xml”>\r\n<editor id\=”org.eclipse.pde.ui.featureEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”wsdl”>\r\n<editor id\=”com.genuitec.eclipse.webdesigner.htmleditor”/>\r\n</info>\r\n<info name\=”*” extension\=”xsl”>\r\n<editor id\=”org.xmen.ui.text.XMLTextEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”nst”>\r\n<editor id\=”org.xmen.ui.text.XMLTextEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”cfml”>\r\n<editor id\=”com.rohanclan.cfml.editors.CFMLEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”exsd”>\r\n<editor id\=”org.eclipse.pde.ui.schemaEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”hbm”>\r\n<editor id\=”org.xmen.ui.text.XMLTextEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”sql”>\r\n<editor id\=”com.genuitec.eclipse.sqlexplorer.plugin.editors.SQLEditor”/>\r\n</info>\r\n<info name\=”sample” extension\=”properties”>\r\n<editor id\=”org.eclipse.pde.ui.sampleEditor”/>\r\n</info>\r\n<info name\=”struts-config” extension\=”xml”>\r\n<editor id\=”com.genuitec.eclipse.struts.editor.multipage.StrutsConfigEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”jsp”>\r\n<editor id\=”com.genuitec.eclipse.webdesigner.jspeditor”/>\r\n</info>\r\n<info name\=”*” extension\=”properties”>\r\n<editor id\=”org.eclipse.jdt.ui.DefaultTextEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”mod”>\r\n<editor id\=”org.xmen.multipageeditor.DTDEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”wml”>\r\n<editor id\=”com.genuitec.eclipse.webdesigner.htmleditor”/>\r\n</info>\r\n<info name\=”*” extension\=”xhtml”>\r\n<editor id\=”com.genuitec.eclipse.webdesigner.htmleditor”/>\r\n<editor id\=”org.eclipse.webbrowser”/>\r\n</info>\r\n<info name\=”*” extension\=”shtml”>\r\n<editor id\=”com.genuitec.eclipse.webdesigner.htmleditor”/>\r\n</info>\r\n<info name\=”*” extension\=”dadx”>\r\n<editor id\=”org.xmen.ui.text.XMLTextEditor”/>\r\n</info>\r\n<info name\=”*” extension\=”html-ss”>\r\n<editor id\=”com.genuitec.eclipse.webdesigner.htmleditor”/>\r\n</info>\r\n<info name\=”*” extension\=”dtd”>\r\n<editor id\=”org.xmen.multipageeditor.DTDEditor”/>\r\n</info>\r\n</editors>\r\n
    /instance/com.genuitec.eclipse.wizards/object.template.8.label=Default template for singleton
    /instance/org.eclipse.jdt.ui/useAnnotationsPrefPage=true
    /instance/com.genuitec.eclipse.wizards/ejb.template.3=Templates/EjbEntity.java
    /instance/com.genuitec.eclipse.wizards/ejb.template.2=Templates/EjbMessageDriven.java
    /instance/com.genuitec.eclipse.wizards/ejb.template.1=Templates/EjbSession.java
    /instance/com.genuitec.eclipse.wizards/factory.template.1=Templates/Factory.java
    /instance/org.eclipse.jdt.ui/org.eclipse.jdt.ui.formatterprofiles.version=6
    /instance/com.genuitec.eclipse.wizards/applet.template.2=Templates/Applet14.java
    /instance/com.genuitec.eclipse.easie.sun/JDK_INSTALLATION_NAME=j2re1.4.2_04
    /instance/com.genuitec.eclipse.wizards/applet.template.1=Templates/Applet.java
    /instance/com.genuitec.eclipse.wizards/object.template.9=Templates/Enumeration.java
    /instance/com.genuitec.eclipse.wizards/singleton.template.1.label=Default template for singleton
    /instance/com.genuitec.eclipse.wizards/object.template.8=Templates/Singleton.java
    /instance/com.genuitec.eclipse.wizards/object.template.4.label=Default template for Servlet
    /instance/com.genuitec.eclipse.easie.resin2/JDK_INSTALLATION_NAME=j2re1.4.2_04
    /instance/com.genuitec.eclipse.wizards/object.template.7=Templates/StrutsDispatchAction.java
    /instance/com.genuitec.eclipse.wizards/xml.template.4=Templates/StrutsConfig.xml
    /instance/com.genuitec.eclipse.wizards/object.template.6=Templates/StrutsAction.java
    /instance/com.genuitec.eclipse.wizards/xml.template.3=Templates/WebXmlStruts.xml
    /instance/com.genuitec.eclipse.wizards/object.template.5=Templates/StrutsActionForm.java
    /instance/com.genuitec.eclipse.wizards/xml.template.2=Templates/WebXml.xml
    /instance/com.genuitec.eclipse.wizards/object.template.4=Templates/Servlet.java
    /instance/com.genuitec.eclipse.wizards/xml.template.1=Templates/Xml.xml
    /instance/com.genuitec.eclipse.easie.jonas3/JDK_INSTALLATION_NAME=j2re1.4.2_04
    /instance/com.genuitec.eclipse.wizards/object.template.3=Templates/Applet.java
    /instance/com.genuitec.eclipse.wizards/object.template.5.label=Default template for a Struts ActionForm class
    /instance/com.genuitec.eclipse.wizards/object.template.2=Templates/Exception.java
    /instance/com.genuitec.eclipse.wizards/object.template.1=Templates/Bean.java
    file_export_version=3.0
    /instance/com.genuitec.eclipse.wizards/object.template.1.label=Default template for a bean class

    @com
    .genuitec.eclipse.easie.resin=3.8.1
    /instance/com.genuitec.eclipse.wizards/object.template.2.label=Default template for an exception class
    /instance/com.genuitec.eclipse.wizards/array.template.1.label=Default template for Array with basic types

    @com
    .ibm.sse.editor=13.8.1
    /instance/org.eclipse.webbrowser/browsers=<?xml version\=”1.0″ encoding\=”UTF-8″?>\r\n<web-browsers current\=”0″>\r\n<internal new_page\=”false” clear_history\=”false”/>\r\n<external name\=”Internet Explorer” location\=”C\:\\Program Files\\Internet Explorer\\IEXPLORE.EXE” parameters\=””/>\r\n<external name\=”Mozilla” location\=”C\:\\Program Files\\mozilla.org\\Mozilla\\mozilla.exe” parameters\=””/>\r\n</web-browsers>\r\n
    /instance/com.genuitec.eclipse.wizards/object.template.3.label=Default template for Applet
    /instance/com.genuitec.eclipse.wizards/array.template.2.label=Default template for Array with object types
    /instance/org.eclipse.ant.ui/useAnnotationsPrefPage=true
    /instance/com.genuitec.eclipse.easie.jboss2/JDK_INSTALLATION_NAME=j2re1.4.2_04

    @com
    .genuitec.eclipse.easie.oracle9=3.8.1
    /instance/com.genuitec.eclipse.wizards/xml.template.3.label=XML template for a web.xml file with Struts
    /instance/org.eclipse.jdt.core/org.eclipse.jdt.core.classFormatVersion=TN|6548426757850|6541018757850|snyfr|8|3|6
    /instance/com.genuitec.eclipse.wizards/ejb.template.2.label=Message Driven EJB
    /instance/com.genuitec.eclipse.easie.resin3/JDK_INSTALLATION_NAME=j2re1.4.2_04
    /instance/com.genuitec.eclipse.easie.oracle/JDK_INSTALLATION_NAME=j2re1.4.2_04
    /instance/com.genuitec.eclipse.wizards/xml.template.4.label=XML template for a struts-config.xml file
    /instance/com.genuitec.eclipse.easie.jrun/JDK_INSTALLATION_NAME=j2re1.4.2_04
    /instance/com.genuitec.eclipse.wizards/ejb.template.3.label=Entity EJB
    /instance/com.genuitec.eclipse.wizards/applet.template.1.label=Template for Applet with JDK1.3
    /instance/org.eclipse.ant.ui/problem=changed
    /instance/com.genuitec.eclipse.easie.websphere/JDK_INSTALLATION_NAME=j2re1.4.2_04
    /instance/com.genuitec.eclipse.wizards/applet.template.2.label=Template for Applet with JDK1.4

    @com
    .genuitec.eclipse.easie.tomcat=3.8.1

    @com
    .genuitec.eclipse.easie.orion2=3.8.1
    @com.genuitec.eclipse.easie.orion1=3.8.1
    /instance/com.genuitec.eclipse.wizards/xml.template.1.label=Default XML template
    /instance/org.graysky.eclipse.logwatcher/saveWatchers=true
    /instance/com.genuitec.eclipse.wizards/xml.template.2.label=XML template for a web.xml file

    @com
    .genuitec.eclipse.easie.websphere5=3.8.1
    /instance/com.genuitec.eclipse.wizards/ejb.template.1.label=Session EJB
    /instance/org.eclipse.jdt.ui/org.eclipse.jdt.ui.javadoclocations=<?xml version\=”1.0″ encoding\=”UTF-8″?>\r\n<javadoclocation>\r\n<location_01 path\=”C\:/Program Files/Java/j2re1.4.2_04/lib/ext/dnsns.jar” url\=”http\://java.sun.com/j2se/1.4.2/docs/api”/>\r\n<location_01 path\=”C\:/Program Files/Java/j2re1.4.2_04/lib/ext/sunjce_provider.jar” url\=”http\://java.sun.com/j2se/1.4.2/docs/api”/>\r\n<location_01 path\=”C\:/Program Files/Java/j2re1.4.2_04/lib/ext/localedata.jar” url\=”http\://java.sun.com/j2se/1.4.2/docs/api”/>\r\n<location_01 path\=”C\:/Program Files/Java/j2re1.4.2_04/lib/ext/ldapsec.jar” url\=”http\://java.sun.com/j2se/1.4.2/docs/api”/>\r\n<location_01 path\=”C\:/Program Files/Java/j2re1.4.2_04/lib/sunrsasign.jar” url\=”http\://java.sun.com/j2se/1.4.2/docs/api”/>\r\n<location_01 path\=”C\:/Program Files/Java/j2re1.4.2_04/lib/charsets.jar” url\=”http\://java.sun.com/j2se/1.4.2/docs/api”/>\r\n<location_01 path\=”C\:/Program Files/Java/j2re1.4.2_04/lib/rt.jar” url\=”http\://java.sun.com/j2se/1.4.2/docs/api”/>\r\n<location_01 path\=”C\:/Program Files/Java/j2re1.4.2_04/lib/jsse.jar” url\=”http\://java.sun.com/j2se/1.4.2/docs/api”/>\r\n<location_01 path\=”C\:/Program Files/Java/j2re1.4.2_04/lib/jce.jar” url\=”http\://java.sun.com/j2se/1.4.2/docs/api”/>\r\n</javadoclocation>\r\n
    /instance/com.genuitec.eclipse.easie.websphere5/JDK_INSTALLATION_NAME=j2re1.4.2_04
    /instance/org.eclipse.ant.core/ant_home_entries=C\:/ots/apache-ant-1.6.1/lib/ant-antlr.jar,C\:/ots/apache-ant-1.6.1/lib/ant-apache-bsf.jar,C\:/ots/apache-ant-1.6.1/lib/ant-apache-resolver.jar,C\:/ots/apache-ant-1.6.1/lib/ant-commons-logging.jar,C\:/ots/apache-ant-1.6.1/lib/ant-commons-net.jar,C\:/ots/apache-ant-1.6.1/lib/ant-contrib-1.0b1.jar,C\:/ots/apache-ant-1.6.1/lib/ant-icontract.jar,C\:/ots/apache-ant-1.6.1/lib/ant-jai.jar,C\:/ots/apache-ant-1.6.1/lib/ant-jakarta-bcel.jar,C\:/ots/apache-ant-1.6.1/lib/ant-jakarta-log4j.jar,C\:/ots/apache-ant-1.6.1/lib/ant-jakarta-oro.jar,C\:/ots/apache-ant-1.6.1/lib/ant-jakarta-regexp.jar,C\:/ots/apache-ant-1.6.1/lib/ant-javamail.jar,C\:/ots/apache-ant-1.6.1/lib/ant-jdepend.jar,C\:/ots/apache-ant-1.6.1/lib/ant-jmf.jar,C\:/ots/apache-ant-1.6.1/lib/ant-jsch.jar,C\:/ots/apache-ant-1.6.1/lib/ant-junit.jar,C\:/ots/apache-ant-1.6.1/lib/ant-launcher.jar,C\:/ots/apache-ant-1.6.1/lib/ant-netrexx.jar,C\:/ots/apache-ant-1.6.1/lib/ant-nodeps.jar,C\:/ots/apache-ant-1.6.1/lib/ant-starteam.jar,C\:/ots/apache-ant-1.6.1/lib/ant-stylebook.jar,C\:/ots/apache-ant-1.6.1/lib/ant-swing.jar,C\:/ots/apache-ant-1.6.1/lib/ant-trax.jar,C\:/ots/apache-ant-1.6.1/lib/ant-vaj.jar,C\:/ots/apache-ant-1.6.1/lib/ant-weblogic.jar,C\:/ots/apache-ant-1.6.1/lib/ant-xalan1.jar,C\:/ots/apache-ant-1.6.1/lib/ant-xalan2.jar,C\:/ots/apache-ant-1.6.1/lib/ant-xslp.jar,C\:/ots/apache-ant-1.6.1/lib/ant.jar,C\:/ots/apache-ant-1.6.1/lib/catalina-ant.jar,C\:/ots/apache-ant-1.6.1/lib/xercesImpl.jar,C\:/ots/apache-ant-1.6.1/lib/xml-apis.jar,
    /instance/org.eclipse.help.ui/browser.y=203
    /instance/com.genuitec.eclipse.wizards/snippetLibInstalled=true
    /instance/com.genuitec.eclipse.easie.jboss3/JDK_INSTALLATION_NAME=j2re1.4.2_04
    /instance/org.eclipse.help.ui/browser.x=154
    /instance/org.eclipse.help.ui/browser.w=1024
    /instance/org.eclipse.jdt.ui/Refactoring.ErrorPage.severityThreshold=2

    @com
    .genuitec.eclipse.easie.jboss4=3.8.1

    @com
    .genuitec.eclipse.easie.jboss3=3.8.1

    @com
    .genuitec.eclipse.easie.jboss2=3.8.1

    @com
    .genuitec.eclipse.easie.tomcat5=3.8.1
    @com.genuitec.eclipse.easie.tomcat4=3.8.1
    /instance/org.eclipse.help.ui/browser.h=768
    /instance/com.genuitec.eclipse.easie.resin/JDK_INSTALLATION_NAME=j2re1.4.2_04
    /instance/com.genuitec.eclipse.wizards/map.template.2=Templates/MapObjectType.java
    /instance/com.genuitec.eclipse.wizards/map.template.1=Templates/MapBasicType.java
    /instance/org.eclipse.jdt.ui/org.eclipse.jface.textfont=1|Courier New|10|0|WINDOWS|1|0|0|0|0|0|0|0|0|1|0|0|0|0|Courier New;
    /instance/com.genuitec.eclipse.core/LICENSEE=yzukerman
    @org.eclipse.jdt.launching=3.0.0
    @org.eclipse.team.cvs.ui=3.0.0
    /instance/com.genuitec.eclipse.easie.tomcat4/JDK_INSTALLATION_NAME=j2re1.4.2_04
    /instance/com.genuitec.eclipse.easie.oracle9/JDK_INSTALLATION_NAME=j2re1.4.2_04
    /instance/com.genuitec.eclipse.easie.orion1/JDK_INSTALLATION_NAME=j2re1.4.2_04
    /instance/org.eclipse.jdt.ui/fontPropagated=true
    /instance/com.genuitec.eclipse.easie.jonas/JDK_INSTALLATION_NAME=j2re1.4.2_04
    /instance/org.eclipse.webbrowser/internalWebBrowserFavorites=MyEclipse|*|http\://www.myeclipseide.com|*|Eclipse|*|http\://www.eclipse.org|*|
    /instance/com.genuitec.eclipse.wizards/servlet.template.1.label=Default template for Servlet
    @org.eclipse.webbrowser=13.8.1
    /instance/com.genuitec.eclipse.wizards/html.template.3=Templates/Applet.html

    @com
    .genuitec.eclipse.easie.bejy=3.8.1
    /instance/com.genuitec.eclipse.wizards/html.template.2=Templates/HtmlWithLoginForm.html
    /instance/com.genuitec.eclipse.wizards/html.template.1=Templates/Html.html
    /instance/com.genuitec.eclipse.wizards/applethtml.template.1.label=Default Applet HTML template

    @com
    .genuitec.eclipse.easie.websphere=3.8.1
    /instance/com.genuitec.eclipse.wizards/struct.map.4=java.util.TreeMap
    /instance/com.genuitec.eclipse.wizards/array.template.2=Templates/ArrayObjectType.java
    /instance/com.genuitec.eclipse.wizards/struct.map.3=java.util.WeakHashMap
    /instance/com.genuitec.eclipse.easie.jrun4/JDK_INSTALLATION_NAME=j2re1.4.2_04
    /instance/com.genuitec.eclipse.wizards/array.template.1=Templates/ArrayBasicType.java
    /instance/com.genuitec.eclipse.wizards/struct.map.2=java.util.Hashtable
    /instance/com.genuitec.eclipse.wizards/servlet.template.1=Templates/Servlet.java
    /instance/com.genuitec.eclipse.wizards/struct.map.1=java.util.HashMap
    /instance/com.genuitec.eclipse.wizards/jsp.template.4.label=Default JSF template
    /instance/org.eclipse.jdt.ui/org.eclipse.jdt.ui.text.templates_migrated=true
    /instance/com.genuitec.eclipse.easie.jboss4/JDK_INSTALLATION_NAME=j2re1.4.2_04
    /instance/com.genuitec.eclipse.wizards/map.template.1.label=Default template for Map with basic types
    /instance/com.genuitec.eclipse.cross.easystruts.eclipse/me.rc2.upgraded=true
    /instance/com.genuitec.eclipse.wizards/jsp.template.5.label=Just as HTML
    /instance/com.genuitec.eclipse.wizards/map.template.2.label=Default template for Map with object types
    /instance/com.genuitec.eclipse.easie.orion2/JDK_INSTALLATION_NAME=j2re1.4.2_04
    /instance/org.eclipse.ui.workbench/ENABLED_DECORATORS=org.eclipse.jdt.ui.override.decorator\:true,org.eclipse.pde.ui.binaryProjectDecorator\:false,org.eclipse.team.cvs.ui.decorator\:true,org.eclipse.ui.LinkedResourceDecorator\:true,
    /instance/org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.MYECLIPSE_LIB_HOME=C\:/Program Files/MyEclipse3_8_1/eclipse/plugins/com.genuitec.eclipse.j2eedt.core_3.8.1/data/libraryset
    /instance/com.genuitec.eclipse.wizards/html.template.3.label=Default Applet HTML template
    /instance/com.genuitec.eclipse.wizards/jsp.template.2.label=Standard JSP using Struts 1.1
    /instance/com.ibm.sse.editor/useAnnotationsPrefPage=true
    /instance/com.genuitec.eclipse.wizards/jsp.template.5=Templates/Jsp2.jsp

    @com
    .genuitec.eclipse.easie.jetty5=3.8.1
    /instance/com.genuitec.eclipse.wizards/jsp.template.4=Templates/JsF.jsp

    @com
    .genuitec.eclipse.easie.jetty4=3.8.1
    /instance/com.genuitec.eclipse.wizards/jsp.template.3.label=Standard JSP using Struts 1.1 with a form
    /instance/com.genuitec.eclipse.wizards/jsp.template.3=Templates/Struts2.jsp
    /instance/com.genuitec.eclipse.wizards/jsp.template.2=Templates/Struts.jsp
    /instance/com.genuitec.eclipse.wizards/jsp.template.1=Templates/Jsp.jsp
    @org.eclipse.help.ui=3.0.0
    /instance/com.genuitec.eclipse.easie.tomcat5/JDK_INSTALLATION_NAME=j2re1.4.2_04
    /instance/org.eclipse.webbrowser/internalWebBrowserHistory=C\:\\dev\\boston_retail\\images\\icons\\fr_flag_icon.gif|*|file\:/C\:/dev/boston_retail/images/icons/fr_flag_icon.gif|*|
    /instance/org.eclipse.jdt.ui/org.eclipse.jdt.ui.text.custom_templates=<?xml version\=”1.0″ encoding\=”UTF-8″?>\r\n<templates/>
    @org.eclipse.ui=3.0.0

    @com
    .genuitec.eclipse.easie.jonas3=3.8.1
    /instance/com.genuitec.eclipse.wizards/html.template.1.label=Default HTML template

    #215109

    If I put an html comment <!– before the <script> tag I can then edit the JavaScript area.

    Once I remove the comment, the JavaScript area is again ‘locked’ up and is not editable.

    #215116

    If I run Eclipse’s Find and Replace function on the JavaScript block when it is in an editable, context-colored state, it will become uneditable after the replace operation is completed.

    Again, this lockup of the JavaScript occurs on two machines in our company.

    #215120

    Riyad Kalla
    Member

    Can you try and create a new file, copy-paste the contents into the new file and see if it works? Also what source control plugin are you using? None of us on the team can reproduce this problem.

    #216683

    Folks,
    I having the same problem with MyEclipse 3.8.2. I am running Eclipse 3.0.1 on Red Hat Enterprise 3 WS with java version “1.4.2_05”.

    I am editing an existing JSP file. If I create a tag set <script></script> and place the cursor in between the tags, the cursor is dead. I can’t type
    any text or move the cursor with the cursor keys. If I click out side these tags with the mouse, I can edit again. Here is excerpt from my JSP file:

    
    <script type="text/javascript">
    <!--
    
    //-->
    </script>
    

    When I try to type between the <script> and </script> tags, I found the following errors in the log file:

    
     
    !ENTRY org.eclipse.ui 4 4 Oct 01, 2004 23:41:01.707
    !MESSAGE Unhandled event loop exception
     
    !ENTRY org.eclipse.ui 4 0 Oct 01, 2004 23:41:01.708
    !MESSAGE java.lang.NullPointerException
    !STACK 0
    java.lang.NullPointerException
            at com.ibm.sse.model.html.text.rules.StructuredTextPartitionerForHTML.createPartition(Unknown Source)
            at com.ibm.sse.model.jsp.text.rules.StructuredTextPartitionerForJSP.setInternalPartition(Unknown Source)
            at com.ibm.sse.model.text.rules.StructuredTextPartitioner.internalGetPartition(Unknown Source)
            at com.ibm.sse.model.text.rules.StructuredTextPartitioner.getPartition(Unknown Source)
            at com.ibm.sse.model.text.rules.StructuredTextPartitioner.getContentType(Unknown Source)
            at com.ibm.sse.model.internal.text.BasicStructuredDocument.getContentType(Unknown Source)
            at org.eclipse.jface.text.TextUtilities.getContentType(TextUtilities.java:368)
            at org.eclipse.jface.text.contentassist.ContentAssistant.getProcessor(ContentAssistant.java:1392)
            at org.eclipse.jface.text.contentassist.ContentAssistant.getCompletionProposalAutoActivationCharacters(ContentAssistant.java:1625)
            at org.eclipse.jface.text.contentassist.ContentAssistSubjectControlAdapter.getCompletionProposalAutoActivationCharacters(ContentAssistSubjectControlAdapter.java:279)
            at org.eclipse.jface.text.contentassist.ContentAssistant$AutoAssistListener.keyPressed(ContentAssistant.java:284)
            at org.eclipse.jface.text.contentassist.ContentAssistant$AutoAssistListener.verifyKey(ContentAssistant.java:309)
            at org.eclipse.jface.text.TextViewer$VerifyKeyListenersManager.verifyKey(TextViewer.java:403)
            at org.eclipse.swt.custom.StyledTextListener.handleEvent(StyledTextListener.java:55)
            at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82)
            at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:954)
            at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:978)
            at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:963)
            at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:833)
            at org.eclipse.swt.custom.StyledText.handleKeyDown(StyledText.java:5000)        at org.eclipse.swt.custom.StyledText$7.handleEvent(StyledText.java:4747)        at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82)
            at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:954)
            at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:978)
            at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:963)
            at org.eclipse.swt.widgets.Control.sendIMKeyEvent(Control.java:2320)
            at org.eclipse.swt.widgets.Control.gtk_commit(Control.java:1717)
            at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:1197)
            at org.eclipse.swt.widgets.Display.windowProc(Display.java:3098)
            at org.eclipse.swt.internal.gtk.OS.gtk_im_context_filter_keypress(Native Method)
            at org.eclipse.swt.widgets.Control.filterKey(Control.java:1339)
            at org.eclipse.swt.widgets.Control.gtk_key_press_event(Control.java:1819)
            at org.eclipse.swt.widgets.Composite.gtk_key_press_event(Composite.java:440)
            at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:1207)
            at org.eclipse.swt.widgets.Display.windowProc(Display.java:3098)
            at org.eclipse.swt.internal.gtk.OS.gtk_main_do_event(Native Method)
            at org.eclipse.swt.widgets.Display.eventProc(Display.java:879)
            at org.eclipse.swt.internal.gtk.OS.gtk_main_iteration(Native Method)
            at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2297)
            at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1377)
            at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1348)
            at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:254)
            at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141)
            at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:96)
            at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:335)
            at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:273)
            at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:129)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:324)
            at org.eclipse.core.launcher.Main.basicRun(Main.java:185)
            at org.eclipse.core.launcher.Main.run(Main.java:704)
            at org.eclipse.core.launcher.Main.main(Main.java:688)
     
    
    
    #216691

    Riyad Kalla
    Member

    keith,
    Thank you for the stack trace, I have filed this as a high priority item to make sure we absolutely get it fixed in 3.8.3. The problem for us (as you can see from the thread) is that none of us can reproduce it even with the example pages… I’m wondering if it is a Linux/MyEclipse issue… we’ll look into it.

    #216720

    This is a weird bug. Now, I can edit inside the <script></script> tag.

    Initailly, I couldn’t which is why I posted my reply above. When the error occured, it was the first time I had tried to create a <script></script> tag set in a file in my project since I loaded MyEclipse 3.8.2.

    Then I found someone say that I could edit the inside of a <script></script> tag set if I wrapped the tags with an HTML comment. I did that and added my javascript code.

    Then I removed the comments and tested my script. Since then, I have been able to edit the javascript.

    #216722

    Riyad Kalla
    Member

    keith,
    THank you for the additional details… I’ve talked with the dev in charge of this and aparently the partioning code that goes into parsing a JSP page is about as complex as the software used to launch the space shuttle… he has already looked into this briefly and doesn’t know if it will be addressed in 3.8.3 timeframe because it is so elusive for us to reproduce (and the amount of code that needs to be gone through to uncover what is happening is truely mind boggling…)

    #216784

    Chuck Deal
    Member

    I had a similar problem last week. I justed wanted to confim the fact that after a find/replace operation I was unable to edit the SCRIPT section.

    What I was doing:
    I was attempting to code capture an entire file. I right-clicked the existing file in the Package explorer and clicked COPY. Then I pasted to the same folder supplying a new name. After opening the newly copied file, I then did a find/replace. As a result of the replace operation, the JSP had validation errors. I performed a second find/replace and then attempted to edit the SCRIPT section. At this time I was not able to edit the section. I then saved, closed, and reopened the file and was able to edit. Upon checking the log, I found the same error message as posted earlier in this thread by keithdfetterman.

    Two things to note:
    First, I can’t remember if I saved the file while there were validation errors present.
    Second, In all of the times that I have experienced this problem I had validation errors of the page prior to attempting to edit the SCRIPT section. Is is possible that something in the validator is putting the partitions in a bad state (hence the NullPointerException)?

    Thanks

    #216786

    Riyad Kalla
    Member

    cdeal!

    After following your tips I was able to reproduce this consistently. The key seems to be the find/replace operation… it won’t allow edits until the file is reopened… very strange. I’ll file this ASAP.

    #218929

    Chuck Deal
    Member

    I have also been able to cosistently reproduce this error by:

    select a block of text, press TAB (or Shift-TAB) to indent the selected block. After performing the indentation, I can’t edit the SCRIPT section.

    NOTE: Sometimes (I think), I can still edit the section until I leave the SCRIPT block and then return, at which time I am unable to edit again.

Viewing 15 posts - 1 through 15 (of 17 total)
Reply To: JavaScript blocks inacessible

You must be logged in to post in the forum log in