How to convert eclipse plug-in project to java project

I have one eclipse plug-in project which is Java and can be plug into IBM lotus Notes application. This Java eclipse plug-in project is working fine in IBM Notes and it has graphic pages. It used a lot of library like:
org.eclipse.jface,
org.eclipse.swt,
org.eclipse.ui,
org.eclipse.wb.swt,
Now we want to decouple this project from IBM Notes and make it as standandalone Java application. It could be eclipse dependent Java application, but is not plugin into IBM Notes. How to way we can convert it to standard alone Java application ? Please let me know the idea/main steps if you have any idea. I hope I don't need to rewrite every thing.
Thanks

Use the file->import option to create a JDeveloper project from either existing source or WAR file.
An example of the approach is shown here:
https://blogs.oracle.com/shay/entry/migrating_from_netbeans_to_jde

Similar Messages

  • How to convert oracle form fmb file to java swing file using Jdeveloper

    how to convert oracle form fmb file to java swing file using Jdeveloper.Please explain with detailes steps if possible or please give a link where it is available
    thanks
    Message was edited by:
    user591884

    There is no automatic way to do this in JDeveloper. I know there are some Oracle Partners offering forms to java conversion, I don't know how much of their tools are automated and done with JDeveloper. With JDeveloper+ADF you basically rewriting the Forms application from scratch (and using ADF is helpful during this process).

  • How to move CodeWarrior plug-in project to Xcode plug-in project??????????

    Hi everybody,
    I have a problem in moving CodeWarrior Photoshop plug-in project to Xcode Photoshop plug-in project:
    1. I had done as step by step in file makingxcodeprojects.html (Conversion process for Adobe Photoshop plug-ins). I thinks who concern this problem always have. But it isn't more detail with moving simpleformat project in CodeWarror to simpleformat project in Xcode.
    2. Please, may you give me another example (step by step, i hope it is more detail in configuration step, libraray step, code project step). If so, thanks alot.
    Thanks,
    [email protected]

    After Effects Developer Center

  • How to convert a older Robohelp project

    Can anyone tell me if it is possible to convert a RoboHELP
    word project written in microsoft word 97 to a RoboHelp 7?

    Hello HILMAR11 and welcome to the RH community.
    Before you do anything, take a backup of your project and
    store it somewhere safe just in case...
    Now are you saying you want to use the RH for HTML
    application rather than the RH for Word application? If so, try
    opening the application and creating a new project. As part of that
    process you have the option of importing files. There are various
    options but try either an .rtf or hlp file. You can even try your
    RH for Word project file. Give them a go and see the
    results.

  • How to convert .ear file of webdynpro for java application to webdynpro pro

    Hi All,
    I have a .ear file which belongs one web dynpro for java application.
    I do have other information about the same.
    I need to convert it into a web dynpro project and use it in NWDS to make changes.
    How can I do it? I could not find any solution on SDN.. I hope I get here...
    Thanks and Regards,
    Aditya Deshapnde
    Edited by: Aditya Deshpande on Nov 23, 2010 1:55 PM

    Hi Friend,
    This is almost not possible even if you have Java Decompiler -- WD has a lot compile(design)-time only artifacts that are not exist in generated EAR.
    Hope this is help full for u.
    Regards
    Vijay Kalluri

  • Thiz iz Urgent..........How to convert a .class file to a .java file

    Hi Everybody,
    I want to convert back a .class file (a compiled servlet) into .java (source code) file. How do I do it???
    Note using javap has not been of any help.
    Thanks in Advance
    Rajib

    Why don't you look at this thread:
    http://forums.java.sun.com/thread.jsp?forum=31&thread=143500
    If thats not enough, try searching all the forums for:
    "convert .java .class" That'll give yu a bunch of other threads...
    Sjur

  • How to convert a sql query to a java language?

    A sql like this:"update myoracletable set name='myname',age=26,sex='female',address=NULL,visittime=SYSDATE,visitnum=visitnum+1where name='name' and address='address'",I want to use java language update such as :rs.updateString(),rs.updateDate() but not a sql update.How can I do in this case?

    Something like this?
    try{
         DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
         Connection con = DriverManager.getConnection("jdbc:oracle:thin:@your_server:1521:sid","scott","tiger");
         Statement st = con.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_UPDATABLE);
         ResultSet rs = st.executeQuery("SELECT deptno,dname,loc FROM dept where deptno=28");
         while(rs.next() ) {
              rs.updateString(2,"Some Name");
              rs.updateString(3,"Some Location");
              rs.updateRow();
              System.out.println(rs.getString(1)+" : "+rs.getString(2)+" : "+rs.getString(3));
    } catch (Exception e) {
         System.out.println(e);
    }Sudha

  • How to convert xml file to xsl using java

    Hi all,
    I have an XML file with which i need to convert(transform) it to an xsl file using java.
    I am new to converting xml file to xslt.Please send me if u have code .
    Thanks in advance
    regards
    Ram

    You seem to be asking the wrong question. An XSL file can be used to transform an XML file, but transforming an XML into an XSL does not make sense. The API for running XSL transforms on the Java platform is described here:
    http://java.sun.com/javase/6/docs/api/javax/xml/transform/package-summary.html

  • : how to convert string into uppercase string in java

    iam having string in lower case i need to convert it to uppercase using java.please help me

    s = s.toUpperCase ();See http://java.sun.com/j2se/1.4.2/docs/api/java/lang/String.html.

  • How i convert string(dd/mm/yyyy) to java.util.Date object

    <%
       try{
             String date="1/8/2000";
             SimpleDateFormat ts= new SimpleDateFormat("dd-MMM-yyyy");
             Date  sqlToday = new java.sql.Date(ts.parse(date).getTime());
            out.println("I am Here");
             out.println("Date:"+sqlToday);
            out.println("After Date:");
             catch(ParseException e){
                  e.printStackTrace();
      %>It is the code and i cann't get any result.
    i am very new to JSTL and netbeans pls help me
    Thanks in Advance

    Write your format string to match the user input. ie yyyy-MM-dd (if that is what the user types in). MMM means month in short words - ie Jan, Feb, Mar etc
    Once you parse it into a date, and get a java.sql.Date, you should use a prepared statement and the setDate() method.
    Try
    dd/MM

  • How to convert to be a system

    can anybody teach me how to convert the program i do in JAVA be a executable program without open software like JCreator or windows prompt.

    can anybody teach me how to convert the program i do
    in JAVA be a executable program without open software
    like JCreator or windows prompt.Pack it into a JAR, associate the JAR with "javaw.exe -jar".

  • How to convert BigDecimal to double

    Error Message: {http://xmlns.oracle.com/OracleRules1/OracleRules1_DecisionService_1}operationErroredFault
    Fault ID default/BusinessRule2!1.0*b48a0c26-0b59-41e0-8939-55c7589d76f1/BusinessRule2_BPELProcess/10004-BpInv0-BpSeq2.9-4
    Fault Time Jan 15, 2010 11:52:33 AM
    Non Recoverable System Fault :
    <bpelFault><faultType> <message>0</message></faultType><operationErroredFault xmlns="http://xmlns.oracle.com/OracleRules1/OracleRules1_DecisionService_1"><part name="payload"><errorInfo xmlns="http://xmlns.oracle.com/OracleRules1/OracleRules1_DecisionService_1"><errorMessage>cannot convert from type 'java.math.BigDecimal' to type 'double' at line 5 column 9 in main</errorMessage></errorInfo></part></operationErroredFault></bpelFault

    >
    > how to convert bigdecimal to double in webdynpro java
    Hi,
    Try this:
    double x = wdContext.currentContextElement().getBigdecimalAttribute().doubleValue();
    Refer methods applicable on Bigdecimal here -
    http://code.google.com/android/reference/java/math/BigDecimal.html
    Regards,
    Anagha
    Edited by: Anagha Jawalekar on Nov 17, 2008 12:08 PM

  • New a vmware project (create hello world plug-in project),how to use it as a normal plug-in on orchestrator??

    in use:
    eclipse sdk (indigo 3.7.2) windows 7 64bit
    vcenter orchestrator 5.1 (windows 2008 R2)
    vmware - vco- plug-in SDK 5.1
    i installed vmware-vco plug-in sdk 5.1 to eclipse 3.7.2,then i created a vmware project(choose create hello world plug-in project)
    how to do next??
    I  export the project as a jar file,rename it as .dar ,and put it to the vmware/infrastructure/orchestrator/app-server/server/vmo/plugins,,
    then i upload the .dar file,,it reminds me installed failed....
    thanks so much!!!

    i don't think you have to rename the jar and create a dar. Once you have build successful you should get the dar file.
    Online Documentation - vRealize Orchestrator Plug-in SDK 5.5 - VMware Developer Center

  • How to Refer dll in my InDesign Plug-In Project ???

    Hi All,
    I have a xxx.dll and xxx.lib.
    b I kept xxx.dll in indesign.exe path. and
    b xxx.lib in "C:\Program Files\Adobe\Adobe InDesign CS3 Products SDK\build\win\objd"
    I set the reference for xxx.lib in
    b project->properties->common properties->References
    and in
    b project->properties->cofiguration->Linker->Input->Additional Dependecies
    I am not able Refer this dll from my Plug-In project and access its methods.
    Where i am wrong?? or I need to do some additional coding for this..
    how to call or Refer this xxx.dll??
    Thanks

    Hi sunil,
    First u need to go through indesign SDK documents.First go throgh
    plugins.pdf to create a basic plugin.this document is available in
    path
    Adobe InDesign CS3 Products SDK\docs\guides
    here u can learn how to create basic plugin using dollyX.go through the steps described u will create ur first plugin.
    then u can refer
    user-interface.pdf and programming guide.pdf for further devlopement.
    ALL the best.

  • I created a trailer. I converted it to a project. How  do I get it into my movie?

    I created a trailer. I converted it to a project. How do I get it into my movie project?

    Do you want to ADD it to an existing Project? If so, then you can just Copy/Paste the trailer project onto an existing project. Otherwise, just Share(export as  a QT vid) and import it back into iMovie to add to your other movie. Hope this helps.
    p.s. did you finalize the trailer project?

Maybe you are looking for

  • Add a video clip (not in camera roll) to iphoto journal?

    Hi. I am creating a photo journal album using iphoto on ipad. I would like to add a movie clip filmed by iphone. I made an album that includes all the photos and a movie clip in icloud (photo stream), and I can see photos and the movie clip on ipad ,

  • How to upload a zoomify image to my website

    I have a project where I need to upload, to my own website, a photo exported from PS using zoomify. I have a folder with the name "test_img", containing: image properties, "test_img.html", folders of tile groups, and the zoomifyViewer. I also have a

  • Documentation Data models UCCX

    I look after documentation Data models UCCX. Who can help me where is it ?

  • DNG Converter Not Recognizing .CR2 Files

    I have a new Canon EOS 5D Mark II and CS3, so I cannot view the CR2 files from the 5D in Bridge in their native format.  I read all the posts and upgraded to ACR 4.6, then upgraded the camera profiles to those in the ACR 5.2 package (the one that inc

  • How to make onClick behavior inside div active?

    Code seems correct in Dreamweaver CS4, yet when clicking within the <div></div> tag area on initial webpage containing below code in browser (using F12 to view on local system -- browser is FireFox 3.6.8) no action occurs and no webpage redirect info