Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

gelide · Gel Java IDE

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 9917
  • Category: Java
  • Founded: Feb 18, 2002
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 3079 - 3108 of 3195   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Show Message Summaries Sort by Date ^  
#3079 From: "Doug" <skyypunk@...>
Date: Thu May 5, 2005 7:28 pm
Subject: Thanks!
skyypunk
Send Email Send Email
 
Sorry to hear that you will no longer be working on this, but I would
like to thank you for such a great program!  It made it so much easier
while I was learning to program in school to have such a quality IDE
that ran so quickly.

Thanks again,
Doug Bemis

#3080 From: news@...
Date: Wed May 4, 2005 5:54 pm
Subject: Gel IDE Components
dark_sided
Send Email Send Email
 
Anyone knows whats delphi's components the Gel IDE use ?

I am thinking write a Java IDE with Delphi. Anyone knows another IDEs wrote in
Delphi for Java ?

ps. Sorry my bad English, I'm Brazillian.






-------------------------------------------------
This mail sent through IMP: http://horde.org/imp/

#3081 From: arunks <arunks4u@...>
Date: Sat May 7, 2005 4:34 am
Subject: Help for junit testing
arunks4u
Send Email Send Email
 

Hi,

I am using  gelIDE , I saw an option for testing java classes with Junit. Now i downloaded Junit

 but i don't know how to do the testing.   will gel generate the testcase for each java file , if yes then plz help , how to generate the test case. 

 

Thankz in advance  


Discover Yahoo!
Stay in touch with email, IM, photo sharing more. Check it out!

#3082 From: "iceofhart" <iceofhart@...>
Date: Thu May 12, 2005 2:58 am
Subject: Help! PasswordAuthenticator
iceofhart
Send Email Send Email
 
hi! i'm a java beginner from philippines. i hope you can help me with
this problem of mine.
i have this code for Connection :
/*
  * Connection.java
*/
package com.scorpion.authenticator;

import java.sql.*;
import java.net.*;
import java.util.*;
import java.io.*;

public class Connection
{

     static String str_url =
    "http://203.172.16.25:8888/authmtsmshttp?src=690&TC=00&SD=00";
     static String str_user = "mp690";
     static String str_password = "mp690";
      public static void main(String args[])
     {
         try
         {
             String mobileno = "639205623169";
             String message = "testing one two three";

             str_url += "&dest="+URLEncoder.encode(mobileno)
+"&msg="+URLEncoder.encode(message);
             System.out.println("CONNAUTH : " + str_url);

             // Install Authenticator
             Authenticator.setDefault(new PasswordAuthenticator());

             URL url = new URL(str_url);
             BufferedReader in = new BufferedReader(
    new InputStreamReader(
    url.openStream()));
             String inputLine;
             while ((inputLine = in.readLine()) != null)
                 System.out.println(inputLine);

             in.close();

             System.out.println("CONNAUTH : Successfully
Completed...");
         }
         catch(Exception ex)
         {
             System.out.println("DEBUG 0: Authenticator Failure...");
             return;
         }
     }

}



and for PasswordAuthenticator:

// --- PasswordAuthenticator class
package com.scorpion.authenticator;
import java.net.Authenticator;
import java.net.PasswordAuthentication;
class PasswordAuthenticator extends Authenticator
{
     protected PasswordAuthentication getPasswordAuthentication()
     {
         //System.out.println("PASSAUTH : Authentication on
process...");
         //System.out.println("PASSAUTH : GetPasswordAuthentication()
called for https connection!!!");
         return new PasswordAuthentication("mp690", "mp690".toCharArray
());
     }
}

when I compile the PasswordAuthenticator.java, there's no error
appears but when I compile Connection.java, the error "Cannot Resolve
symbol Authenticator.setDefault(new Password Authenticator());
location:class com.scorpion.Connection symbol:class
PasswordAuthenticator" appears.
What might be the cause of this error?
I hope you can helop me. Thanks!

#3083 From: prabhat atri <apna_atri@...>
Date: Thu May 12, 2005 2:20 pm
Subject: Re: Help! PasswordAuthenticator
apna_atri
Send Email Send Email
 
Dear Friend,
 
I have solved your problem.
 
just import the import java.net.Authenticator; package in your Connection class
 
how can you make such silly mistake?
 
Friend Forever,
Prabhat Atri
INDIA

iceofhart <iceofhart@...> wrote:
hi! i'm a java beginner from philippines. i hope you can help me with
this problem of mine.
i have this code for Connection :
/*
* Connection.java
*/
package com.scorpion.authenticator;

import java.sql.*;
import java.net.*;
import java.util.*;
import java.io.*;

public class Connection
{
   
    static String str_url =
   "http://203.172.16.25:8888/authmtsmshttp?src=690&TC=00&SD=00";
    static String str_user = "mp690";
    static String str_password = "mp690";
     public static void main(String args[])
    {
        try
        {
            String mobileno = "639205623169";
            String message = "testing one two three";
           
            str_url += "&dest="+URLEncoder.encode(mobileno)
+"&msg="+URLEncoder.encode(message);
            System.out.println("CONNAUTH : " + str_url);
           
            // Install Authenticator
            Authenticator.setDefault(new PasswordAuthenticator());
                       
            URL url = new URL(str_url);
            BufferedReader in = new BufferedReader(
   new InputStreamReader(
   url.openStream()));
            String inputLine;
            while ((inputLine = in.readLine()) != null)
                System.out.println(inputLine);
        
            in.close();
           
            System.out.println("CONNAUTH : Successfully
Completed...");
        }
        catch(Exception ex)
        {
            System.out.println("DEBUG 0: Authenticator Failure...");
            return;
        }       
    }
   
}



and for PasswordAuthenticator:

// --- PasswordAuthenticator class
package com.scorpion.authenticator;
import java.net.Authenticator;
import java.net.PasswordAuthentication;
class PasswordAuthenticator extends Authenticator
{
    protected PasswordAuthentication getPasswordAuthentication()
    {
        //System.out.println("PASSAUTH : Authentication on
process...");
        //System.out.println("PASSAUTH : GetPasswordAuthentication()
called for https connection!!!");
        return new PasswordAuthentication("mp690", "mp690".toCharArray
());
    }
}

when I compile the PasswordAuthenticator.java, there's no error
appears but when I compile Connection.java, the error "Cannot Resolve
symbol Authenticator.setDefault(new Password Authenticator());
location:class com.scorpion.Connection symbol:class
PasswordAuthenticator" appears.
What might be the cause of this error?
I hope you can helop me. Thanks!








Discover Yahoo!
Get on-the-go sports scores, stock quotes, news more. Check it out!

#3084 From: julien castelain <jcastelain@...>
Date: Thu May 12, 2005 2:01 pm
Subject: Re: Help for junit testing
juliencastelain
Send Email Send Email
 
hi,

maybe this can help:
      http://junit.sourceforge.net/doc/testinfected/testing.htm
and
      http://www.cs.umanitoba.ca/~eclipse/10-JUnit.pdf

cheers

On 5/7/05, arunks <arunks4u@...> wrote:
>
>
> Hi,
>
> I am using  gelIDE , I saw an option for testing java classes with Junit.
> Now i downloaded Junit
>
>  but i don't know how to do the testing.   will gel generate the testcase
> for each java file , if yes then plz help , how to generate the test case.
>
>
>
> Thankz in advance
>
> ________________________________
> Discover Yahoo!
> Stay in touch with email, IM, photo sharing & more. Check it out!
> ________________________________
> Yahoo! Groups Links
>
> To visit your group on the web, go to:
> http://groups.yahoo.com/group/gelide/
>
> To unsubscribe from this group, send an email to:
> gelide-unsubscribe@yahoogroups.com
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
>
>

#3085 From: "radopas" <radopas@...>
Date: Mon May 16, 2005 3:50 pm
Subject: Re: Thanks!
radopas
Send Email Send Email
 
I just want to say thanks too.

Gel brings back the fun from programming.
I hope there will be a new version one day.


--- In gelide@yahoogroups.com, "Doug" <skyypunk@y...> wrote:
> Sorry to hear that you will no longer be working on this, but I would
> like to thank you for such a great program!  It made it so much easier
> while I was learning to program in school to have such a quality IDE
> that ran so quickly.
>
> Thanks again,
> Doug Bemis

#3086 From: "Dashmesh A. Singh" <dashmesh_ashish_singh@...>
Date: Thu May 12, 2005 4:58 pm
Subject: Re: Help for junit testing
dashmesh_ash...
Send Email Send Email
 

Hi Arun,

This is a very basic question and you could get the answer yourself had you thought a little deeper.

I am not even exposed to java but I know a little that may help you.

Junit is just an automated unit-testing framework and the unit tests have to be specified by the developer and embedded in the code.

The unit testing framework calls these functions and checks for the results with the expected results.

No, GEL cannot automatically generate test cases. You have to write them.

Hope it helps.

 


Discover Yahoo!
Have fun online with music videos, cool games, IM more. Check it out!

#3087 From: rakesh verma <rakeshv_11@...>
Date: Sat May 14, 2005 6:47 am
Subject: Re: Help! PasswordAuthenticator
rakeshv_11
Send Email Send Email
 
Hi Ice or Heart;
 
Well u r beginner so there nothing to worry about that.
First check out if you have imported all the necessary classes in your connection file.

java.net.Authenticator class should be imported in all the class viz. in Connection and PasswordAuthenticator.

Still if could not solve ur problame let me know about that.

Regards

Rakesh Verma

Mumbai, India



iceofhart <iceofhart@...> wrote:
hi! i'm a java beginner from philippines. i hope you can help me with
this problem of mine.
i have this code for Connection :
/*
* Connection.java
*/
package com.scorpion.authenticator;

import java.sql.*;
import java.net.*;
import java.util.*;
import java.io.*;

public class Connection
{
   
    static String str_url =
   "http://203.172.16.25:8888/authmtsmshttp?src=690&TC=00&SD=00";
    static String str_user = "mp690";
    static String str_password = "mp690";
     public static void main(String args[])
    {
        try
        {
            String mobileno = "639205623169";
            String message = "testing one two three";
           
            str_url += "&dest="+URLEncoder.encode(mobileno)
+"&msg="+URLEncoder.encode(message);
            System.out.println("CONNAUTH : " + str_url);
           
            // Install Authenticator
            Authenticator.setDefault(new PasswordAuthenticator());
                       
            URL url = new URL(str_url);
            BufferedReader in = new BufferedReader(
   new InputStreamReader(
   url.openStream()));
            String inputLine;
            while ((inputLine = in.readLine()) != null)
                System.out.println(inputLine);
        
            in.close();
           
            System.out.println("CONNAUTH : Successfully
Completed...");
        }
        catch(Exception ex)
        {
            System.out.println("DEBUG 0: Authenticator Failure...");
            return;
        }       
    }
   
}



and for PasswordAuthenticator:

// --- PasswordAuthenticator class
package com.scorpion.authenticator;
import java.net.Authenticator;
import java.net.PasswordAuthentication;
class PasswordAuthenticator extends Authenticator
{
    protected PasswordAuthentication getPasswordAuthentication()
    {
        //System.out.println("PASSAUTH : Authentication on
process...");
        //System.out.println("PASSAUTH : GetPasswordAuthentication()
called for https connection!!!");
        return new PasswordAuthentication("mp690", "mp690".toCharArray
());
    }
}

when I compile the PasswordAuthenticator.java, there's no error
appears but when I compile Connection.java, the error "Cannot Resolve
symbol Authenticator.setDefault(new Password Authenticator());
location:class com.scorpion.Connection symbol:class
PasswordAuthenticator" appears.
What might be the cause of this error?
I hope you can helop me. Thanks!








Yahoo! Messenger - want a free easy way to contact your friends online?

#3088 From: arunks <arunks4u@...>
Date: Tue May 17, 2005 3:52 am
Subject: Re: Help for junit testing
arunks4u
Send Email Send Email
 
hi,
    i think u r not aware of other IDE's  u know
Eclipse
   IDE, it will generate the Structure of test case for
   the classes  and we only have to specify the test
data
  which we want to test. Actually i expected some thing
like that.  then why  Gel is giving the option to for
Junit test.  U can find this option

  Tools -->Options---> Unit Testing

For what this option is given.

ur reply is expected

  thankZ

--- "Dashmesh A. Singh"
<dashmesh_ashish_singh@...> wrote:
>
> Hi Arun,
>
> This is a very basic question and you could get the
> answer yourself had you thought a little deeper.
>
> I am not even exposed to java but I know a little
> that may help you.
>
> Junit is just an automated unit-testing framework
> and the unit tests have to be specified by the
> developer and embedded in the code.
>
> The unit testing framework calls these functions and
> checks for the results with the expected results.
>
> No, GEL cannot automatically generate test cases.
> You have to write them.
>
> Hope it helps.
>
>
>
>
>
> ---------------------------------
> Discover Yahoo!
>  Have fun online with music videos, cool games, IM &
> more. Check it out!

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

#3089 From: Mike <danzfreak@...>
Date: Tue May 17, 2005 6:34 pm
Subject: Re: Re: Thanks!
mdanz12studio
Send Email Send Email
 
I'm kinda new in programing. i have a w/ running my compiled programs
in java (jdk):D where can i download the right program for it?

#3090 From: AANAND NATARAJAN <aanand@...>
Date: Thu May 19, 2005 11:45 am
Subject: How to configure ant in GEL
tuxaanand
Send Email Send Email
 
HI All
        Does any one know about configuring ant for a particular project in GEL. There is an option in the options pane, but how to make GEL use ant for building projects.
Thanks in advance

--
Aanand 

#3091 From: "Raymond A. Wade Jr." <tear_star@...>
Date: Thu May 19, 2005 7:41 am
Subject: Gel and CoffeeMud
tear_star
Send Email Send Email
 
I was curious if Gel can be used with CoffeeMud, not so much the java
files, but somehow when I create a java file, is there a way to preview
it, as it is depended upon coffeemud, for anyone who is unfamiliar with
it :


http://sourceforge.net/projects/coffeemud

Thanks for any help

#3092 From: Anurag Setia <anuragsetia2000@...>
Date: Thu May 19, 2005 7:52 am
Subject: Re: Re: Thanks!
richardjavac...
Send Email Send Email
 
you have WHAT running ur programs...
what do u want to download...
 
Anurag

Mike <danzfreak@...> wrote:
I'm kinda new in programing. i have a w/ running my compiled programs
in java (jdk):D where can i download the right program for it?


Yahoo! India Matrimony: Find your life partner online.


#3093 From: indar <indar2002@...>
Date: Fri May 20, 2005 8:04 am
Subject: java script enabled or not
indar2002
Send Email Send Email
 
hi,
i have written a java script program which will be used for browser, now what i want the people who dnt hv their java script on they should not affecetd by this so i need a script through which i can detect whether the user's browser is java script enabled or not.
 
 


Yahoo! Mail
Stay connected, organized, and protected. Take the tour

#3094 From: rakesh verma <rakeshv_11@...>
Date: Fri May 20, 2005 4:53 am
Subject: Web Logic Server With GEL.
rakeshv_11
Send Email Send Email
 
Do any one how to integrate Wel Logic with GEl. Is this possible to deploy J2EE application with gel.
 
I think at least TOMCAT can be intgrated. If any one know more about that pls let me Know about that.
 
Thanks and best regards.
Rakesh Verma


Yahoo! Messenger - want a free easy way to contact your friends online?

#3095 From: "N.Aanand" <aanand@...>
Date: Fri May 20, 2005 5:24 am
Subject: How to config ant in GEL for a project
tuxaanand
Send Email Send Email
 
how to configure ant for a particular project in GEL. There is an
option in the options pane, but how to make GEL use ant for building
projects.
Thanks in advance

#3096 From: husain dalal <husain_dalal@...>
Date: Tue May 24, 2005 4:39 pm
Subject: Re: Web Logic Server With GEL.
husain_dalal
Send Email Send Email
 
Hi
Please cna some1 tell me how to integrate tomcat with
GEL
and how to run j2ee applications
i m new to j2ee so pls help me


--- rakesh verma <rakeshv_11@...> wrote:
> Do any one how to integrate Wel Logic with GEl. Is
> this possible to deploy J2EE application with gel.
>
> I think at least TOMCAT can be intgrated. If any one
> know more about that pls let me Know about that.
>
> Thanks and best regards.
> Rakesh Verma
>
>
> ---------------------------------
>  Yahoo! Messenger  - want a free & easy way to
> contact your friends online?

________________________________________________________________________
Yahoo! India Matrimony: Find your life partner online
Go to: http://yahoo.shaadi.com/india-matrimony

#3097 From: Pobzeb Armerding <pobzebarmerding@...>
Date: Fri May 20, 2005 2:53 pm
Subject: Re: java script enabled or not
pobzebarmerding
Send Email Send Email
 
So, you want a java script to determine whether they have java script
enabled???  You could just use the <noscript></noscript> tags after your
java script.  Anything between those tags will show up if java script is
disabled.  Depending on the server language that you are using (Tomcat
jsp/java, ASP, PHP...), you may be able to use that to determine if they
have java script enabled or not.

Pobzeb Armerding
Vann's Inc.
Software Engineer

indar wrote:

> hi,
> i have written a java script program which will be used for browser,
> now what i want the people who dnt hv their java script on they should
> not affecetd by this so i need a script through which i can detect
> whether the user's browser is java script enabled or not.
>
>
>
> ------------------------------------------------------------------------
> Yahoo! Mail
> Stay connected, organized, and protected. Take the tour
> <http://tour.mail.yahoo.com/mailtour.html>
> ------------------------------------------------------------------------
> *Yahoo! Groups Links*
>
>     * To visit your group on the web, go to:
>       http://groups.yahoo.com/group/gelide/
>
>     * To unsubscribe from this group, send an email to:
>       gelide-unsubscribe@yahoogroups.com
>       <mailto:gelide-unsubscribe@yahoogroups.com?subject=Unsubscribe>
>
>     * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
>       Service <http://docs.yahoo.com/info/terms/>.
>
>

#3098 From: Pobzeb Armerding <pobzebarmerding@...>
Date: Fri May 20, 2005 3:30 pm
Subject: Re: How to config ant in GEL for a project
pobzebarmerding
Send Email Send Email
 
If you have set up the information in the Ant tab in the options area,
then click "View, Ant".  This will show the Ant side bar where you will
build your app using Ant.  Of course, you will need a build.xml file in
your apps root directory or Gel will not know how to send the build
information to Ant.  Below is an example of what a build.xml file might
look like.  I don't think that it will actually work (I have not tried
this exact example), but it is the basic information used to build using
Ant.

Example build.xml file:
--------------------------------------------------------------------------------\
--------------------------------
     <?xml version="1.0"?>
     <project name="project_name_goes_here" default="jar">

         <!-- ========================================================== -->
         <!-- Global properties and path definitions                     -->
         <!-- ========================================================== -->

         <property name="version" value="1.0" />

         <!-- Read in (optional) external file with local property
settings -->
         <!-- This is a file in the same directory that contains
information such as paths -->
         <property file="build.properties" />

         <!-- Define important directories -->
         <property name="src.dir"       location="src" />
         <property name="conf.dir"      location="config" />
         <property name="build.dir"     location="build" />
         <property name="build.classes" location="${build.dir}/classes" />
         ...
         etc.
         ...

         <!-- Construct compile classpath -->
         <path id="compile.classpath">
             <pathelement location="lib/commons-logging.jar" />
             <pathelement location="lib/jdom.jar" />
              ...
              etc.
              ...
         </path>

         <!-- ========================================================== -->
         <!-- Clean environment                                          -->
         <!-- ========================================================== -->

         <target name="clean" description="Deletes all files that are
generated by the build.">
             <delete dir="${build.classes}" />
              ...
              etc.
              ...
         </target>

         <!-- ========================================================== -->
         <!-- Compile the java sources                                   -->
         <!-- ========================================================== -->

         <target name="compile" depends="init" description="Compiles the
project sources.">
             <mkdir dir="${build.classes}"/>
             <javac srcdir="${src.dir}" destdir="${build.classes}"
debug="${build.debug}" deprecation="${build.deprecation}">
                 <classpath refid="compile.classpath"/>
             </javac>
             <!-- copy property files -->
             <filter filtersfile="build.properties"/>
             <copy todir="${build.classes}" overwrite="true"
filtering="true">
                 <fileset dir="${conf.dir}">
                     <include name="**/*.properties"/>
                 </fileset>
             </copy>
         </target>


         <!-- ========================================================== -->
         <!-- Bundle class files as JAR                                  -->
         <!-- ========================================================== -->

         <target name="jar" depends="compile" description="Creates JAR of
the project classes.">
             <mkdir dir="${build.lib}"/>
             <!-- config and property files must be also reside in
build.classes -->
             <jar jarfile="${build.lib}/jar_file_name.jar">
                 <!-- Do not include environment specific files -->
                 <fileset dir="${build.classes}"
excludes="property_file_name.properties">
                 </fileset>
             </jar>
         </target>

     </project>
--------------------------------------------------------------------------------\
--------------------------------
End of example.

once this file is in your root directory, the Ant side bar should show
an outline of the build.xml parts.  From here you can right click on the
parts and run them to build your project.  I hope this helps you at
least to get a start on using Ant.

Pobzeb Armerding
Vann's Inc.
Software Engineer




N.Aanand wrote:

> how to configure ant for a particular project in GEL. There is an
> option in the options pane, but how to make GEL use ant for building
> projects.
> Thanks in advance
>
>
>
>
>
> ------------------------------------------------------------------------
> *Yahoo! Groups Links*
>
>     * To visit your group on the web, go to:
>       http://groups.yahoo.com/group/gelide/
>
>     * To unsubscribe from this group, send an email to:
>       gelide-unsubscribe@yahoogroups.com
>       <mailto:gelide-unsubscribe@yahoogroups.com?subject=Unsubscribe>
>
>     * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
>       Service <http://docs.yahoo.com/info/terms/>.
>
>

#3099 From: "H-D Collier" <hdcollier@...>
Date: Sun May 29, 2005 1:47 pm
Subject: How to configure GEL to use a server for JSP
hdcollier
Send Email Send Email
 
I am new to gel and I cant fiqure out how to configure it to use a
server for JSP.

#3100 From: "Dipshankar" <dipshankar@...>
Date: Fri Jun 3, 2005 7:16 am
Subject: RE: How to configure GEL to use a server for JSP
deep_sur
Send Email Send Email
 

Hi there…

 

Go to Project -> Properties -> Web tab and configure it as shown in the attached screenshot.

Off course the paths will change as per your machine configuration.

 

Chow,

-Dip.

 


From: gelide@yahoogroups.com [mailto:gelide@yahoogroups.com] On Behalf Of H-D Collier
Sent: Sunday, May 29, 2005 7:17 PM
To: gelide@yahoogroups.com
Subject: [gelide] How to configure GEL to use a server for JSP

 

I am new to gel and I cant fiqure out how to configure it to use a 
server for JSP.






#3101 From: arunks <arunks4u@...>
Date: Fri Jun 3, 2005 12:42 pm
Subject: Re: How to configure GEL to use a server for JSP
arunks4u
Send Email Send Email
 
Hi,

     first start ur work as a project  where u set the
classpath and other settings

project-->properties

  in the properties Tab
   u can find different sub tabs like
-->Main -->path -->libraries

like so
   there u can find the TAB "Run"
   in that tab
       u can configure the server u want to start

   and also set the directory where u can want to put
the servlets and JSP


i think now u got a clear idea.

--- H-D Collier <hdcollier@...> wrote:

> I am new to gel and I cant fiqure out how to
> configure it to use a
> server for JSP.





__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

#3102 From: "qapla2004" <qapla@...>
Date: Sat Jun 4, 2005 1:46 am
Subject: Another lightweight native Java IDE (written in Delphi)
qapla2004
Send Email Send Email
 
Hi everyone,

I wanted to mention that we are building another native Java IDE for
Windows.

It's called IDX and can be found at http://www.optistic.com

Here is a screenshot: http://optistic.com/images/idx_screen.gif

IDX was inspired by the speed and simplicity of Gel and adds many
other features such as real-time roundtrip UML(class) diagrams and
much more.

If you'd like to try it, you can download it from
http://www.optistic.com/index.php?id=16

Best Regards,

Anders

#3103 From: "Francisco Jodevan Campelo" <jodevan@...>
Date: Mon Jun 6, 2005 6:02 pm
Subject: Re: Another lightweight native Java IDE (written in Delphi)
jodevan
Send Email Send Email
 
It looks like very beautiful and seems to be very useful, but isn't free :(
----- Original Message -----
From: qapla2004
Sent: Friday, June 03, 2005 10:46 PM
Subject: [gelide] Another lightweight native Java IDE (written in Delphi)

Hi everyone,

I wanted to mention that we are building another native Java IDE for
Windows.

It's called IDX and can be found at http://www.optistic.com

Here is a screenshot: http://optistic.com/images/idx_screen.gif

IDX was inspired by the speed and simplicity of Gel and adds many
other features such as real-time roundtrip UML(class) diagrams and
much more.

If you'd like to try it, you can download it from
http://www.optistic.com/index.php?id=16

Best Regards,

Anders








#3104 From: Ricardo Pereira <willcoxit@...>
Date: Mon Jun 6, 2005 8:12 pm
Subject: Re: Another lightweight native Java IDE (written in Delphi)
willcoxit
Send Email Send Email
 
Hey Folks!


    I follow this list for a while and this is my very
first post, so, I need to apologize for my bad
english!.

    I tried GELIDE about six months ago... but because
Microsof intensified the fiscalization over pirates
copies of windows, I moved my operational system to
LINUX, because I don't have money to buy a legal copy
of Windows.. and linux is FREE.

    All my java projects worked very well in that
plataform(Mandrake 10.1)... but not the same with the
GEL IDE.

    So, if it was developed for JAVA why don't write it
in JAVA??... and now I read about a new IDE ONLY for
windows...

   I think that motto "Write Once Run EveryWhere" just
apply not only for the code but in the tool that
support this code too.

   Why focus this new tool in windows??

--- qapla2004 <qapla@...> wrote:

> Hi everyone,
>
> I wanted to mention that we are building another
> native Java IDE for
> Windows.
>
> It's called IDX and can be found at
> http://www.optistic.com
>
> Here is a screenshot:
> http://optistic.com/images/idx_screen.gif
>
> IDX was inspired by the speed and simplicity of Gel
> and adds many
> other features such as real-time roundtrip
> UML(class) diagrams and
> much more.
>
> If you'd like to try it, you can download it from
> http://www.optistic.com/index.php?id=16
>
> Best Regards,
>
> Anders
>
>
>
>
>
>
>
>




__________________________________
Discover Yahoo!
Use Yahoo! to plan a weekend, have fun online and more. Check it out!
http://discover.yahoo.com/

#3105 From: Luiz Antonio Gomes Picanço <news@...>
Date: Mon Jun 6, 2005 8:11 pm
Subject: RES: [SPAM] - Re: Another lightweight native Java IDE (written in Delphi) - Email found in subject
dark_sided
Send Email Send Email
 

How about we develop a Open Source Java Native IDE in Delphi ???

 

Let’s create a group and develop it “””

 


Luiz Antonio Gomes Picanço

luiz.gomes@...

Desenvolvimento

Imago IT Solutions

Tel.: (21) 4501-1000

www.imago.com.br


De: gelide@yahoogroups.com [mailto:gelide@yahoogroups.com] Em nome de Francisco Jodevan Campelo
Enviada em: segunda-feira, 6 de junho de 2005 15:02
Para: gelide@yahoogroups.com
Assunto: [SPAM] - Re: [gelide] Another lightweight native Java IDE (written in Delphi) - Email found in subject

 

It looks like very beautiful and seems to be very useful, but isn't free :(

----- Original Message -----

From: qapla2004

Sent: Friday, June 03, 2005 10:46 PM

Subject: [gelide] Another lightweight native Java IDE (written in Delphi)

 

Hi everyone,

I wanted to mention that we are building another native Java IDE for
Windows.

It's called IDX and can be found at http://www.optistic.com

Here is a screenshot: http://optistic.com/images/idx_screen.gif

IDX was inspired by the speed and simplicity of Gel and adds many
other features such as real-time roundtrip UML(class) diagrams and
much more.

If you'd like to try it, you can download it from
http://www.optistic.com/index.php?id=16

Best Regards,

Anders








 

Esta mensagem, incluindo quaisquer anexos, é dirigida apenas ao seu destinatário e pode conter informação confidencial e/ou privilegiada e não passível de divulgação nos termos da legislação em vigor. Se você não for o destinatário ou a pessoa autorizada a receber esta mensagem, não poderá usar, copiar ou divulgar as informações nela contidas ou tomar qualquer ação baseada nessas informações. Se você recebeu esta mensagem por engano, por favor avise imediatamente o remetente, respondendo o e-mail, ou notifique a IMAGO IT Solutions através do telefone (21) 4501-1000, e em seguida apague a mensagem e quaisquer anexos. Agradecemos sua cooperação.


#3106 From: Mike <danzfreak@...>
Date: Tue Jun 7, 2005 10:54 am
Subject: Re: Re: Thanks!
mdanz12studio
Send Email Send Email
 
i'm using gel ide and i have a problem compiling w/ it can anyone help?:D


On 5/19/05, Anurag Setia <anuragsetia2000@...> wrote:
>
> you have WHAT running ur programs...
> what do u want to download...
>
> Anurag
>
> Mike <danzfreak@...> wrote:
> I'm kinda new in programing. i have a w/ running my compiled programs
> in java (jdk):D where can i download the right program for it?
>
>
>
>
>  Yahoo! India Matrimony: Find your life partner online.
>  ________________________________
>  Yahoo! Groups Links
>
>
> To visit your group on the web, go to:
> http://groups.yahoo.com/group/gelide/
>
> To unsubscribe from this group, send an email to:
> gelide-unsubscribe@yahoogroups.com
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

#3107 From: Michele Christian <mich10683@...>
Date: Tue Jun 7, 2005 2:14 pm
Subject: Re: Another lightweight native Java IDE (written in Delphi)
mich10683
Send Email Send Email
 
Sorry too for my bad english..
I understand your point but I think the purpose Gel is
written in Delphi (not Java) is because native IDE is
much faster than Java-based IDE.
If you're looking for an IDE based on Java, you can
try Eclipse (www.eclipse.org) or netbeans, which run
on Win32 or Linux.
Or if you want to try lightweight Java text editor,
try JEdit (www.jedit.org) or Jext (www.jext.org)

regards,
Michele Christian


--- Ricardo Pereira <willcoxit@...> wrote:

>
> Hey Folks!
>
>
>    I follow this list for a while and this is my
> very
> first post, so, I need to apologize for my bad
> english!.
>
>    I tried GELIDE about six months ago... but
> because
> Microsof intensified the fiscalization over pirates
> copies of windows, I moved my operational system to
> LINUX, because I don't have money to buy a legal
> copy
> of Windows.. and linux is FREE.
>
>    All my java projects worked very well in that
> plataform(Mandrake 10.1)... but not the same with
> the
> GEL IDE.
>
>    So, if it was developed for JAVA why don't write
> it
> in JAVA??... and now I read about a new IDE ONLY for
> windows...
>
>   I think that motto "Write Once Run EveryWhere"
> just
> apply not only for the code but in the tool that
> support this code too.
>
>   Why focus this new tool in windows??
>
> --- qapla2004 <qapla@...> wrote:
>
> > Hi everyone,
> >
> > I wanted to mention that we are building another
> > native Java IDE for
> > Windows.
> >
> > It's called IDX and can be found at
> > http://www.optistic.com
> >
> > Here is a screenshot:
> > http://optistic.com/images/idx_screen.gif
> >
> > IDX was inspired by the speed and simplicity of
> Gel
> > and adds many
> > other features such as real-time roundtrip
> > UML(class) diagrams and
> > much more.
> >
> > If you'd like to try it, you can download it from
> > http://www.optistic.com/index.php?id=16
> >
> > Best Regards,
> >
> > Anders
> >
> >
> >
> >
> >
> >
> >
> >
>
>
>
>
> __________________________________
> Discover Yahoo!
> Use Yahoo! to plan a weekend, have fun online and
> more. Check it out!
> http://discover.yahoo.com/
>
>
>
>
>
> Yahoo! Groups Links
>
>
>     gelide-unsubscribe@yahoogroups.com
>
>
>
>
>


regards,

Michele Christian



__________________________________
Yahoo! Mail Mobile
Take Yahoo! Mail with you! Check email on your mobile phone.
http://mobile.yahoo.com/learn/mail

#3108 From: Pobzeb Armerding <pobzebarmerding@...>
Date: Tue Jun 7, 2005 2:41 pm
Subject: Re: Another lightweight native Java IDE (written in Delphi)
pobzebarmerding
Send Email Send Email
 
I think that you have a very good point.  There is a "Run Everywhere"
IDE available as I am sure most of you know.  The problem that IDE's
written in Java seem to have is that they are very slow.  This is one of
the major advantages to using Gel.  I am curious, what other language(s)
exist that run on multiple platforms?  Or is the best alternative to
just port an application to several different platforms?

Pobzeb Armerding
Vann's Inc.
Software Engineer

Ricardo Pereira wrote:

>
> Hey Folks!
>
>
>    I follow this list for a while and this is my very
> first post, so, I need to apologize for my bad
> english!.
>
>    I tried GELIDE about six months ago... but because
> Microsof intensified the fiscalization over pirates
> copies of windows, I moved my operational system to
> LINUX, because I don't have money to buy a legal copy
> of Windows.. and linux is FREE.
>
>    All my java projects worked very well in that
> plataform(Mandrake 10.1)... but not the same with the
> GEL IDE.
>
>    So, if it was developed for JAVA why don't write it
> in JAVA??... and now I read about a new IDE ONLY for
> windows...
>
>   I think that motto "Write Once Run EveryWhere" just
> apply not only for the code but in the tool that
> support this code too.
>
>   Why focus this new tool in windows??
>
> --- qapla2004 <qapla@...> wrote:
>
> > Hi everyone,
> >
> > I wanted to mention that we are building another
> > native Java IDE for
> > Windows.
> >
> > It's called IDX and can be found at
> > http://www.optistic.com
> >
> > Here is a screenshot:
> > http://optistic.com/images/idx_screen.gif
> >
> > IDX was inspired by the speed and simplicity of Gel
> > and adds many
> > other features such as real-time roundtrip
> > UML(class) diagrams and
> > much more.
> >
> > If you'd like to try it, you can download it from
> > http://www.optistic.com/index.php?id=16
> >
> > Best Regards,
> >
> > Anders
> >
> >
> >
> >
> >
> >
> >
> >
>
>
>
>
> __________________________________
> Discover Yahoo!
> Use Yahoo! to plan a weekend, have fun online and more. Check it out!
> http://discover.yahoo.com/
>
>
>
> ------------------------------------------------------------------------
> *Yahoo! Groups Links*
>
>     * To visit your group on the web, go to:
>       http://groups.yahoo.com/group/gelide/
>
>     * To unsubscribe from this group, send an email to:
>       gelide-unsubscribe@yahoogroups.com
>       <mailto:gelide-unsubscribe@yahoogroups.com?subject=Unsubscribe>
>
>     * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
>       Service <http://docs.yahoo.com/info/terms/>.
>
>

Messages 3079 - 3108 of 3195   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help