Learn More About This
Directory
Sponsored by Synergium.net,
Software Development Services with a Forward Thinking Approach
351. Article: Basa Sunda
- en2.wikipedia.org
- Basa Sunda (literally, language of Sunda), also called Sundanese, is the language of about 27,000,000 people from the western third of Java or 13. ...
352. Article: Island
- en2.wikipedia.org
- Examples include Greenland and Sable Island off North America, Barbados and Trinidad off South America, Sicily off Europe, Sumatra and Java off Asia, and Tasmania off Australia. ...
353. Languages for the Java VM
- flp.cs.tu-berlin.de
- Programming Languages for the Java Virtual Machine .
- The following is a list of programming languages for the Java virtual machine aside of Java itself. ... I excluded extensions to Java by the provision of class libraries implementing the functionality of other languages constructs. The source code of a program executed in the Java VM has to have a syntax different to Java to be included in this list.
- Instead of doing so, you might also read and extend the remarks page on programming languages for the Java VM.
- If you are interested in the original Java language only, you might check out a page on Alternative Java Implementations which provides a list of implementations of Java Virtual Machines (JVMs), Java library implementations, Java compilers to byte code, and compilers of bytecode or Java source to machine code.
- The ObjectWatch Newsletter Number 33 of June 5, 2001 features an article "Is Java Language Neutral?" by Roger Sessions which does an in-depth analysis of the languages collected here. A reaction on that article is "Language Neutrality and the Java Platform" by Nik Boyd which is equally interesting.
- Simple Java Preprocessor in category Precompilers (03/21/04) .
- Join Java in category Extended Java (03/17/04) .
- Kanaputs in category Extended Java (01/13/04) .
- --> | Precompilers | Tcl | Functional programming | Lisp and co | Basic | Logo | Logic programming | ML | Various OO languages | Scripting | Extended Java | Forth | Various languages | Assemblers | Papers | Upcoming |.
- A Simple Java preprocessor Preprocessor with some commands. Jatha Jatha macros are Java programs that write Java programs. Jatha is a preprocessor that runs arbitrary java code in order to generate the source code that the compiler sees. ... The Java Syntactic Extender The Java Syntactic Extender is an extension to the Java language that allows Java programmers to define new syntactic constructs. ... , rule-based pattern matching and hygiene), but exploits Java's compilation model to offer a full procedural macro engine. In other words, syntax expanders may be implemented in, and so use all the facilities of, the full Java language. ... iContract iContract is a novel Java(tm) tool that provides developers with support for design by contract(tm). ... The expressions are a superset of Java, compatible with a subset of the latest UML ``Object Constraint Language (OCL)''. ... The extensible Java pre-processor EPP EPP is an extensible Java source-to-source pre-processor which can introduce new language features. The user can specify "EPP plug-ins" at the top of Java source code in order to incorporate various extension of Java. Emitted source codes can be compiled by ordinary Java compilers, can be debugged by ordinary Java debuggers.
354. Article: How to program in object-oriented languages
- en2.wikipedia.org
- C++, Object Pascal and Java follow an almost procedural notation. ...
355. Article: Provinces of Indonesia
- en.wikipedia.org
- Java .
- Central Java (Jawa Tengah) .
- East Java (Jawa Timur) .
- West Java (Jawa Barat) .
356. java.oreilly.com -- Welcome to the O'Reilly Java Center -- computer books, java books, java programming
- java.oreilly.com
- Java.
- Building Java Enterprise Applications Volume I: Architecture .
- Database Programming with JDBC and Java, Second Edition .
- Developing Java Beans .
- Hardcore Java (March).
- Head First Java .
- Java & XML Data Binding .
- Java & XML, 2nd Edition .
- Java 2D Graphics .
- Java and SOAP .
- Java and XSLT .
- Java Cookbook .
- Java Cryptography .
- Java Data Objects .
- Java Database Best Practices .
- Java Distributed Computing .
357. Article: Object-oriented programming
- en2.wikipedia.org
- In the past decade Java has emerged in wide use partially because of it similarity to the C language but more importantly because if its implementation using a virtual machine that theoretically runs code unchanged on many different platforms, the latter of which makes it the darling of larger development shops with heterogeneous environments. ...
- Besides Java, probably the most commercially important recent object-oriented languages are VB. ...
358. Article: Python vs java typing example
- en2.wikipedia.org
- Python vs java typing example.
359. Article: Café wall illusion
- en2.wikipedia.org
- Another interactive version (Requires Java-capable browser) .
360. Sun Microsystems
- www.sun.com
361. SYS-CON Media - The World's Leading i-Technology Magazine Publisher
- www.javadevelopersjournal.com
- Java Developer's Journal Circulation Ranks # 1 in the World Exceeding Dr. ...
- Java Developer's Journal .
- "Let's Bundle Free Java with Linux," Says IBM's Sutor .
- Harvesting Line-of-Business Java Apps .
- Integrating Java into the. ...
- Sun Claims GPL Would Fork Java .
- Java Developer's Journal.
362. Free Online Games
- thinks.com
- Java and all Java-based marks are trade marks or registered trade marks of Sun Microsystems Inc in the US and other countries. ...
363. Thin Lens Java applet written by Fu-Kwun Hwang
- www.phy.ntnu.edu.tw
- related java applet lens .
- Other java applets.
364. Article: JMS
- en2.wikipedia.org
- JMS as in Java Message Service. ...
365. Article: World Wide Web
- en2.wikipedia.org
- 4 Java and Javascript.
- Java and Javascript.
- Another significant advance in the technology was Sun Microsystems' Java programming language, which enabled web servers to embed small programs (called applets) directly into the information being served that would run on the user's computer, allowing faster and richer user interaction. ...
366. Article: Java API for XML Processing
- www.wikipedia.org
- Java API for XML Processing.
- The Java API for XML Processing, or JAXP, is one of the Java XML programming APIs. ...
367. Article: Java coffee - Vikipedio
- eo.wikipedia.org
368. Article: Java island - Vikipedio
- eo.wikipedia.org
369. Article: Sukarno
- en2.wikipedia.org
- The son of Javanese noble and his Balinese wife from Buleleng regency, Sukarno was born in Surabaya (Several sources said he was born in Blitar, East Java. ...
370. PHP: PHP / Java Integration - Manual
- www.php.net
- Java .
- PHP / Java Integration.
-
There are two possible ways to bridge PHP and Java: you can either integrate PHP into a Java Servlet environment, which is the more stable and efficient solution, or integrate Java support into PHP. The former is provided by a SAPI module that interfaces with the Servlet server, the latter by this Java extension. ...
-
The Java extension provides a simple and effective means for creating and invoking methods on Java objects from PHP. ...
-
You need a Java VM installed on your machine to use this extension. ...
-
To include Java support in your PHP build you must add the option --with-java =DIR where DIR points to the base install directory of your JDK. ... More build instructions for this extension can be found in php-src/ext/java/README. ...
- Java configuration options.
- java. ...
- java. ...
- java. ...
- java. ...
- Java Example.
- <?php // get instance of Java class java. ... System in PHP $system = new Java('java. ... System'); // demonstrate property access echo 'Java version='. $system->getProperty('java. ... '<br />'; echo 'Java vendor='. $system->getProperty('java. ... ' <br />'; // java. ... Date example $formatter = new Java('java. ... SimpleDateFormat', "EEEE, MMMM dd, yyyy 'at' h:mm:ss a zzzz"); echo $formatter->format(new Java('java. ...
371. Article: Algorithmic information theory
- en2.wikipedia.org
- Fortunately, it doesn't really matter: one could take a particular notation for Turing machines, or LISP programs, or Pascal programs, or Java virtual machine bytecode. ...
372. Musician's Friend - Vandoren Alto Sax JAVA Reeds (462587)
- ads.247wsr.com
- Alto Sax JAVA Reeds .
- JAVA Series reeds are easier to blow than classic reeds. ...
373. Article: Wikipedia:IRC channels
- en2.wikipedia.org
- All you need is an IRC client installed on your machine (installation of a Java client on the Wikipedia server is being considered). ...
374. Article: Java XML - Vikipedio
- eo.wikipedia.org
375. Article: Robert Koch
- en2.wikipedia.org
- He started traveling around the world, studying diseases in South Africa, India, and Java. ...
Other related topics:
Do you have a great site about Java? Is
your Java site listed here?
Would you like a prefered placement of your site in this directory?
It's easy! First place, the HTML from the box below on your page that
you would like listed in this directory.
Then use our link submission request with
your name, your contact information, and the URL of your site that has
a link to this directory. After we
verify your link to us, we'll make sure your site stays in our directory,
and we'll give it prefered placement here also.
Here is how to make a simple text link to us. Just copy the code in this
box to your website:
We can also develop a custom Guide To The Internet for your site. Please
request your own
custom Guide To The Internet.
This custom Guide To The Internet produced by
Siql, and is licensed for the exclusive use of Synergium.net. To get your site listed here, please contact Synergium.net.
Copyright 1995-2004 by Siql. All
Rights Reserved.