Re: Next generation COBOL?



"James J. Gavan" <jgavandeletethis@xxxxxxx> wrote in message
news:28pif.637819$tl2.438527@xxxxxxxxxxx
>
> First thing off, if he is reading this - Oliver Wong - Do you consider
> GUIs and collections/dictionaries(lists/Maps) to be an integral part of
> Java ? (Webbing as such being an extension of GUI-ing if you like).

Depends on what you mean by "integral". Java 1.5, purely as a language
(i.e. without the libraries typically bundled with the compile), has no
concept of GUIs, but it does have special support for iterating through
every element in a collection, like so:

for (ElementType element : collection) {
doSomethingWith(element);
}

The classes "List", "Map", "Set", etc. are part of Sun's class library
which they give out for free along with their Java Compiler. As far as I
know, there's only one other (serious) class library one could work with if
one chose to forego Sun's, and it is called "Gnu Classpath", whose main
purpose seems to be to replicate the functionality of Sun's library, but
with open source "free" (as in freedom) code instead of proprietary code.

As for GUIs, Sun also provides two APIs, one called AWT (which is
deprecated now), and another called Swing. IBM also provides a fairly
popular API called SWT.

I think Java and its standard class library provide rather poor support
for webbing actually. I think all you get is an XML parser, and that's about
it. You either have to download the rest from 3rd parties, or write your
own.

There's something called JSP (Java Server Pages), but I don't know much
about it; for example, I don't know if it's from Sun, or some other vendor,
or if it's an open standard of some sort.

- Oliver


.



Relevant Pages

  • Re: Java compatibility issues (WAS: MF having issues?)
    ... Oliver Wong wrote: ... we see the time frame from the designations. ... can you take the Java Version Numbers you quoted and give us a year for each so that we can see the time spans between? ... Having used DECLARATIVES in RM/COBOL I took that across to the M/F DOS version. ...
    (comp.lang.cobol)
  • Re: Are identifier names case sensitive?
    ... Oliver Wong wrote: ... So satisfy my curiosity, why would someone using Java or the 'C' family, have an interest in COBOL? ... Sun took Microsoft to court, eventually won, and so now Microsoft no longer bundles their JVM with windows. ... We'll let you know when it is due to arrive in Paris, en route of course, when the engineer has finished building the engine". ...
    (comp.lang.cobol)
  • Re: Strange problem with JAVA GUIs.
    ... I have a strange problem with my JAVA GUIs running on GNOME ... In my experience the GTK Look & Feel that is selected on the Gnome ... NPEs during startup and opening of windows. ...
    (comp.lang.java.gui)
  • Re: OO in 8.5! Re: TIP #257: Object Orientation for Tcl
    ... It has a polished GUI builder that generates the Java ... Anyone can be up to speed doing basic GUIs in a very short ... Linux, Open Source Consulting ...
    (comp.lang.tcl)
  • Re: Strange problem with JAVA GUIs.
    ... Deepanshu schrieb: ... I have a strange problem with my JAVA GUIs running on GNOME desktop. ...
    (comp.lang.java.gui)