- Javadoc
Javadoc is a documentation generator from Sun Microsystems for generating Application programming interface ... format used by Javadoc is the de facto industry standard for documenting Java classes. Some Integrated Development Environment IDE s, ref http www.netbeans blog.org netbeans ide generating javadoc ... generate Javadoc HTML. Many file editors assist the user in producing Javadoc source and use the Javadoc info as internal references for the programmer. Javadoc also provides an API for creating ... JDiff can generate reports of what changed between two versions of an API. Structure of a Javadoc comment A Javadoc comment is set off from code by standard multi line comment tags code code and code ... code a see also tag Overview of Javadoc The basic structure of writing document comments is embed them inside code ... code . The Javadoc is written next to the items without any separating newline. The class ... of the available Javadoc tags ref http java.sun.com javase 6 docs technotes tools windows javadoc.html javadoctags Javadoc tags in JavaSE 6 ref are listed in the table below class wikitable Tag & Parameter ... An example of using Javadoc to document a method follows. Notice that spacing and number of characters ... links http java.sun.com j2se javadoc Javadoc tool web site http java.sun.com j2se javadoc writingdoccomments JavaDoc tags and how to write comments http www.jcp.org en jsr detail?id 260 JSR 260 Javadoc Tag Technology Update Java Specification Request defines new Javadoc tags http today.java.net ... of Javadoc doclets http www.myjavadoc.net MyJavadoc Another search engine project, to get public ... A viewer to browse multiple Javadocs simultaneously. http www.allimant.org javadoc Various Java documentations ... supporting public Javadoc and source code navigation Category Free documentation generators Category Java development tools Category Java specification requests cs Javadoc de Javadoc es Javadoc fr Javadoc it Javadoc nl Javadoc ja Javadoc no Javadoc nn Javadoc pl Javadoc pt Javadoc ru Javadoc sv ... more details
|
- Primitive wrapper class
to represent primitive values when an Javadoc SE java lang Object is required. The wrapper classes are used extensively with Javadoc SE java util Collection classes in the Javadoc SE package java.util java util package and with the classes in the Javadoc SE package java.lang.reflect java lang ... byte code Javadoc SE java lang Byte code byte code or code String code code short code Javadoc SE java lang Short code short code or code String code code int code Javadoc SE java lang Integer code int code or code String code code long code Javadoc SE java lang Long code long code or code String code code float code Javadoc SE java lang Float code float code , code double code or code String code code double code Javadoc SE java lang Double code double code or code String code code char code Javadoc SE java lang Character code char code code boolean code Javadoc SE java lang Boolean code boolean ... code , code Float code , and code Double code wrapper classes are all subclasses of the Javadoc SE java lang Number class. Void Although it is not a wrapper class, the Javadoc SE java lang Void class ... Void code class is an uninstantiable placeholder class used by the Javadoc SE package java.lang.reflect java lang reflect application programming interface API to hold a reference to the Javadoc ... 5.0, additional wrapper classes were introduced in the Javadoc SE package java.util.concurrent.atomic ... type Wrapper class code int code Javadoc SE java util concurrent atomic AtomicInteger code long code Javadoc SE java util concurrent atomic AtomicLong code boolean code Javadoc SE java util concurrent atomic AtomicBoolean code V code Javadoc SE class AtomicReference V java util concurrent atomic ... more details
|
- Java Platform, Standard Edition
packages java.lang The Java package Javadoc SE package java.lang java lang contains fundamental classes ... code Error code classes provided in JDK 6. The main classes in code java.lang code are Javadoc SE java lang Object &ndash the class that is the root of every class hierarchy. Javadoc SE java lang Enum &ndash the base class for enumerated type enumeration classes as of J2SE 5.0 . Javadoc SE java .... Javadoc SE java lang Throwable &ndash the class that is the base class of the exception class hierarchy. Javadoc SE java lang Error , Javadoc SE java lang Exception , and Javadoc SE java lang RuntimeException &ndash the base classes for each exception type. Javadoc SE java lang Thread &ndash the class that allows operations on threads. Javadoc SE java lang String &ndash the class for string computer science strings and string literal s. Javadoc SE java lang StringBuffer and Javadoc SE java ... code StringBuilder code as of J2SE 5.0 . Javadoc SE java lang Comparable &ndash the interface that allows generic comparison and ordering of objects as of J2SE 1.2 . Javadoc SE java lang Iterable &ndash ... 5.0 . Javadoc SE java lang ClassLoader , Javadoc SE java lang Process , Javadoc SE java lang Runtime , Javadoc SE java lang SecurityManager , and Javadoc SE java lang System &ndash classes that provide ... of day, and enforcement of security policy security policies . Javadoc SE java lang Math and Javadoc ... are automatically imported into every source file . java.lang.ref The Javadoc SE package java.lang.ref .... Each type of reference is designed for a specific use. A Javadoc SE java lang ref SoftReference ... when nothing else references it unless the memory is needed. A Javadoc SE java lang ref WeakReference ... collected during the next collection cycle. This behavior is used in the class Javadoc SE package .... A Javadoc SE java lang ref PhantomReference is used to reference objects that have been marked for garbage ... in preparation for being collected. Each of these reference types extends the Javadoc SE java ... more details
|
- Doclets
Doclet programs work with the Javadoc tool to generate documentation from code written in Java programming language Java . Doclets are written in the Java programming language and use the doclet API to Select which content to include in the documentation. Format the presentation of the content. Create the file that contains the documentation. The standard doclet included with Javadoc generates API documentation as frame based HTML files. Many non standard doclets are available on the web, often for free. These can be used to Create other non API types of documentation. Output the documentation to other non HTML file types such as PDF . Output the documentation as HTML with additional features such as a search. External links http java.sun.com j2se 1.4.2 docs tooldocs javadoc overview.html Java Sun Sun Microsystems FOSS Category Java programming language es Doclets ... more details
|
- JDiff
JDiff is a Javadoc doclets which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two Java programming language Java API s are compared. This is very useful for describing exactly what has changed between two releases of a product. Only the API of each version is compared. It does not compare what the source code does when executed. External links http javadiff.sourceforge.net JDiff homepage http javadiff.sourceforge.net jdiff reports j2se140 j2se141 changes.html A sample report resembles Javadoc reports DEFAULTSORT Jdiff Category Documentation generators Category Java development tools ... more details
|
- Event dispatching thread
by defining the code in a Javadoc SE java lang Runnable object and pass it to the Javadoc SE javax swing SwingUtilities helper class or to the Javadoc SE java awt EventQueue . Two methods of these classes allow synchronous code execution Javadoc SE member invokeAndWait Runnable javax swing SwingUtilities invokeAndWait java.lang.Runnable or Javadoc SE member invokeAndWait Runnable java awt EventQueue invokeAndWait java.lang.Runnable and asynchronous code execution Javadoc SE member invokeLater Runnable javax swing SwingUtilities invokeLater java.lang.Runnable or Javadoc SE member invokeLater Runnable ... exception . The method Javadoc SE javax swing SwingUtilities isEventDispatchThread or Javadoc ... Javadoc SE package javax.swing javax swing Swing API Javadoc documentation Javadoc SE package java.awt java awt AWT API Javadoc documentation Javadoc SE guide swing Swing API documentation Javadoc SE ... more details
|
- Java Cryptography Architecture
The Java Cryptography Architecture JCA is a framework for working with cryptography using the Java programming language Java programming language . It forms part of the Java Computer security security API, and was first introduced in JDK 1.1 in the Javadoc SE package java.security java security package. The JCA uses a Provider model provider based architecture and contains a set of APIs for various purposes, such as encryption , Key management key generation and management , Cryptographically secure pseudorandom number generator secure random number generation , Public key certificate certificate validation , etc. These APIs provide easy way for developers to integrate security into application code. See also Java Cryptography Extension Bouncy Castle cryptography External links Javadoc SE guide security crypto CryptoSpec.html JCA API Specification & Reference Javadoc SE guide security Java Security API Specification & Reference crypto stub security software stub Category Java platform Category Cryptographic software ru Java Cryptography Architecture es Java Cryptography Architecture ... more details
|
- Java collections framework
ref . The standard methods for grouping Java objects were via the array, the Javadoc SE java util Vector , and the Javadoc SE java util Hashtable classes, which unfortunately were not easy to extend ... the Javadoc SE package java.util java util Collection interface. Collection defines the basic parts ... element is in the collection. The Collection interface is a subinterface of Javadoc SE package ... are implemented in the JCF via the Javadoc SE package java.util java util List interface. It defines ... for within the list. Two concrete classes implement List. The first is Javadoc SE package java.util ... implementation is Javadoc SE package java.util java util LinkedList . This class stores the elements ... util List.html ref Queue Interfaces The Javadoc SE package java.util java util Queue interface defines ... out system. This interface is implemented by Javadoc SE package java.util java util LinkedList , Javadoc SE package java.util java util ArrayDeque , and Javadoc SE package java.util java util PriorityQueue ... also implement the Javadoc SE package java.util java util Deque interface, giving it more flexibility. ref http download.oracle.com javase 6 docs api java util Queue.html ref Javadoc SE package java.util java util Queue can be used more flexibly with its subinterface, Javadoc SE package java.util ... java util concurrent BlockingQueue.html ref The Javadoc SE package java.util java util Queue interface is expanded by the Javadoc SE package java.util java util Deque subinterface. Deque creates a double ... and a backwards iterator can be generated. The Deque interface is implemented by Javadoc SE package java.util java util ArrayDeque and Javadoc SE package java.util java util LinkedList . ref http download.oracle.com javase 6 docs api java util Deque.html ref The Javadoc SE package java.util.concurrent java util concurrent BlockingDeque interface works similarly to Javadoc SE package java.util.concurrent ... java util concurrent BlockingDeque.html ref PriorityQueue Class Javadoc SE package java.util java ... more details
|
- JSDoc
example of using a Javadoc like syntax to document JavaScript was released in 1999 with the Netscape ... documentation with JSDoc http java.sun.com j2se javadoc writingdoccomments Javadoc Tool How to Write Doc Comments for the Javadoc Tool Documentation generators http jsdoc.sourceforge.net JSDoc ... more details
|
- SwingLabs
Was the home of the Javadoc SE javax swing GroupLayout manager before its inclusion in Java SE ... HEAD javadoc index.html swingx 0.7 version javadoc DEFAULTSORT Swinglabs Category Java platform ... more details
|
- Java API for XML Processing
representation. The Javadoc SE package javax.xml.parsers javax xml parsers DocumentBuilder is created by the Javadoc SE package javax.xml.parsers javax xml parsers DocumentBuilderFactory . The code DocumentBuilder code creates an Javadoc SE package org.w3c.dom org w3c dom Document instance, which ... the Javadoc SE package org.w3c.dom org w3c dom Node interface. There are many different types of tree ... tags of a document element. Refer to the Javadoc documentation of the Java package Javadoc SE ... the Javadoc SE javax xml parsers SAXParser and is created by the Javadoc SE package javax.xml.parsers ... methods on a Javadoc SE package org.xml.sax.helpers org xml sax helpers DefaultHandler instance provided to the parser. The code DefaultHandler code class implements the Javadoc SE org xml sax ContentHandler , the Javadoc SE org xml sax ErrorHandler , the Javadoc SE org xml sax DTDHandler , and the Javadoc ... more details
|
- Java package
Specification. Core packages in Java SE 6 main Java Platform, Standard Edition Javadoc SE package java.lang java lang basic language functionality and fundamental types Javadoc SE package java.util java util collection data structure classes Javadoc SE package java.io java io file operations Javadoc SE package java.math java math multiprecision arithmetics Javadoc SE package java.nio java nio the New I O framework for Java Javadoc SE package java.net java net networking operations, sockets, DNS lookup s, ... Javadoc SE package java.security java security key generation, encryption and decryption Javadoc SE package java.sql java sql Java Database Connectivity JDBC to access databases Javadoc SE package java.awt java awt basic hierarchy of packages for native GUI components Javadoc SE package javax.swing javax swing hierarchy of packages for platform independent rich GUI components Javadoc SE package java.applet java applet classes for creating an applet The Javadoc SE package java.lang ... links Javadoc SE Java Language Specification, 3rd Edition, Chapter 7 http java.sun.com docs books ... more details
|
- New I/O
use the most efficient operations of the underlying platform. The Java NIO APIs are provided in the Javadoc ... matching facility based on Perl style regular expressions in package Javadoc SE package java.util.regex ... NIO buffers NIO data transfer is based on buffers Javadoc SE package java.nio java nio Buffer and related ... code map code a Javadoc SE package java.nio java nio MappedByteBuffer from a Javadoc SE package java.nio.channels ... science classes implementing the interface Javadoc SE package java.nio.channels java nio channels ... Javadoc SE package java.io java io and Javadoc SE package java.net java net . A channel implementation can be obtained from a high level data transfer class such as Javadoc SE package java.io java io File , Javadoc SE package java.net java net ServerSocket , or Javadoc SE package java.net java ... systems. Computer file File channels Javadoc SE package java.nio.channels java nio channels FileChannel ... channels Javadoc SE package java.nio.channels java nio channels SocketChannel and Javadoc SE package ... in.close source Selectors A selector Javadoc SE package java.nio.channels java nio channels Selector ..., a character set is a mapping between Unicode characters or a subset of them and bytes. The Javadoc ... into buffers more quickly than the old File class does. References references External links Javadoc ... more details
|
- Java Bindings for OpenGL
home page http jogamp.org deployment jogamp next javadoc jogl javadoc overview summary.html JSR 231 ... more details
|
- Java 2D
pixels, produces the final result that ultimately ends up onscreen. The most common composite is Javadoc ... using Javadoc SE package java.awt java awt Color BLACK , and then compositing the results onto the screen ... more details
|
- Maker Interchange Format
Maker Interchange Format MIF is a proprietary markup language associated with Adobe Systems FrameMaker product for technical document preparation. While MIF is essentially specific to a single program FrameMaker , it was widely used in the complex document workflows of small enterprises, especially in the industrial and manufacturing sector. External links http partners.adobe.com public developer en framemaker MIF Reference.pdf MIF 7.0 Reference on Adobe Website http help.adobe.com en US FrameMaker 8.0 mif reference.pdf MIF 8.0 Reference on Adobe Website http help.adobe.com en US FrameMaker 9.0 MIF Reference MIF Reference.pdf MIF 9.0 Reference on Adobe Website http java.sun.com j2se javadoc mifdoclet MIF Doclet , an extension to the Javadoc tool that generates Java programming language Java documentation in MIF rather than HTML. Category Markup languages compu lang stub de Maker Interchange Format ... more details
|
- Java Class Library
grouped by Java package packages . Javadoc SE package java.lang java lang contains fundamental ... , and more generally to Computer network networks , is provided through the Javadoc SE package java.io java io , Javadoc SE package java.nio java nio , and Javadoc SE package java.net java net packages. java.math Mathematics package Javadoc SE package java.math java math provides regular mathematical ... . GUI and 2D computer graphics 2D Graphics the Javadoc SE package java.awt java awt package supports ... API. The Javadoc SE package javax.swing javax swing package is built on Abstract Window Toolkit ..., writing, Music sequencer sequencing , and Synthesizer synthesizing of sound data. Text the Javadoc ... package Javadoc SE package java.awt.image java awt image and Javadoc SE package javax.imageio javax ... through the Javadoc SE package java.sql java sql package. Access to Scripting engines the Javadoc .... Java applet Applets Javadoc SE package java.applet java applet allows applications to be downloaded over a network and run within a guarded sandbox JavaBean Java Beans Javadoc SE package java.beans ... Java applet References Reflist 2 External links http java.sun.com j2se Java SE Main page Javadoc ... more details
|
- AppletViewer
Commented out Image Appletviewer screenshot hello world.png frame right AppletViewer Screenshot on Linux AppletViewer is a standalone, command line program from Sun Microsystems Sun to run Java applet s. Appletviewer is generally used by developers for testing their applets before being deployed to a website . As a Java developer, it is a preferred option for running Java applets that do not involve the use of a web browser . Even though the applet viewer logically takes the place of a web browser, it functions very differently from a web browser. The applet viewer operates on HTML documents, but all it looks for is embedded applet tags any other HTML code in the document is ignored. Each time the applet viewer encounters an applet tag in an HTML document, it launches a separate applet viewer window containing the respective applet. The only drawback to using the applet viewer is that it will not show how an applet will run within the confines of a real web setting. Because the applet viewer ignores all HTML codes except applet tags, it does not even attempt to display any other information contained in the HTML document. Appletviewer is included with Sun s Java Development Kit JDK package, but not with Sun s Java Runtime Environment JRE package. The Java development kit GCJ also has its own version of appletviewer, called gappletviewer . External links http java.sun.com The Java Website Javadoc SE Home URL download.jsp Java SE Downloads , Java Development Kit JDK download page Javadoc SE Home URL docs tooldocs JDK Development Tools , includes detailed documentation of appletviewer and other Java tools programming software stub Category Java platform software ar nl Appletviewer ... more details
|
- SwingWorker
execution Execution is started by using the Javadoc SE name SwingWorker.execute javax swing SwingWorker execute method. Retrieving the result The result can be retrieved by using the Javadoc SE name SwingWorker.get javax swing SwingWorker get method. As calling Javadoc SE name get javax swing ... ways to retrieve the result after the task completion override the Javadoc SE name SwingWorker.done ... source register a listener by using the worker Javadoc SE name SwingWorker.addPropertyChangeListener ... class External links http java.sun.com javase 6 docs api javax swing SwingWorker.html SwingWorker Javadoc ... more details
|
- Design marker
In software engineering , a design marker is a technique of documenting design choices in source code using the Marker Interface pattern . Marker interfaces have traditionally been limited to those interfaces intended for explicit, runtime verification normally via instanceof . A design marker is a marker interface used to document a design choice. In Java programming language Java programs the design choice is documented in the marker interface s Javadoc documentation. Many choices made at software design time cannot be directly expressed in today s implementation languages like C Sharp programming language C and Java. These design choices known by names like Design Pattern , Programming by contract Design Contract , Refactoring , http java.sun.com docs books effective Effective Programming Idioms , http java.sun.com reference blueprints Blueprints , etc. must be implemented via programming and naming conventions , because they go beyond the built in functionality of production programming languages. The consequences of this limitation conspire over time to erode design investments as well as to promote a false segregation between the designer and implementer mindsets. Two independent proposals recognize these problems and give the same basic strategies for tackling them. Until now, the budding Explicit Programming movement has been linked to the use of an experimental Java research tool called ELIDE. The Design Markers technique requires only standard Javadoc like tools to garner many of the benefits of Explicit Programming . External links http www.onjava.com pub a onjava 2003 03 26 design markers.html Design Markers Explicit Programming for the rest of us http www.polyglotinc.com DesignMarkers Design Markers home page http www.cs.ubc.ca labs spl papers 2002 aosd02 explicit.html Explicit Programming manifesto Category Software design ... more details
|
- Java Platform, Enterprise Edition
Platform Packages Javadoc EE package javax.servlet javax servlet code . code The servlet specification .... Javadoc EE package javax.ejb javax ejb code . code The Enterprise JavaBeans specification defines ... bean and the ejb container. Javadoc EE package javax.enterprise.inject javax enterprise inject code ... contexts and Dependency Injection CDI API. Javadoc EE package javax.enterprise.context javax enterprise ... en jsr detail?id 299 Contexts and Dependency Injection CDI API. Javadoc EE package javax.jms ... system s messages. Javadoc EE package javax.faces javax faces code . code This package defines ... interfaces out of components. Javadoc EE package javax.faces.component javax faces component code ... a UML diagram of the component hierarchy. Javadoc EE package javax.persistence javax persistence ... . Javadoc EE package javax.xml.stream javax xml stream This package contains readers and writers for XML streams. Javadoc EE package javax.resource javax resource code . code This package defines the Java ... more details
|
- Java Database Connectivity
classes are contained in the Java package Javadoc SE package java.sql java sql and Javadoc SE ... classes Javadoc SE java sql Statement &ndash the statement is sent to the database server each and every time. Javadoc SE java sql PreparedStatement &ndash the statement is cached and then the execution ... manner. Javadoc SE java sql CallableStatement &ndash used for executing stored procedures ... and their types. There is an extension to the basic JDBC API in the Javadoc SE package ... statement associated with the prepared statement is executed. Examples The method Javadoc SE member ... also require the class to be instantiated with Javadoc SE name .newInstance java lang Class newInstance ... a Javadoc SE java sql Driver class is loaded, it creates an instance of itself and registers it with the Javadoc ... that you may want just logged try source If a database operation fails, JDBC raises an Javadoc ... of a code CallableStatement code to call stored procedures in the database , see the Javadoc ... External links Javadoc SE guide jdbc JDBC API Guide Please be aware that this documentation has examples ... able to cause NullPointerExceptions and has code prone to SQL injection Javadoc SE package java.sql java sql API Javadoc documentation Javadoc SE package javax.sql javax sql API Javadoc documentation ... more details
|
- Abstract Window Toolkit
and A Javadoc SE package java.awt.datatransfer java awt datatransfer Java package package for use ... compiled to native code to draw directly to an AWT Javadoc SE java awt Canvas object computer science ... or race condition. To address this problem, a utility class called Javadoc SE javax swing SwingWorker ... References reflist External links http java.sun.com products jdk awt AWT homepage Javadoc SE package java.awt java awt AWT Javadoc API documentation Javadoc SE guide awt AWT documentation Javadoc SE ... more details
|
- Natural Docs
the same thing would be documented with Javadoc Multiplies two integers. param x The first ... more details
|
- Lang
Lang may refer to Lang surname Langue and parole Langue was Ferdinand de Saussure s term for what in contemporary linguistics is referred to as competency linguistics or I language both Chomsky , referring to an idea of an internal cognitive language as distinct from surface forms &mdash natural spoken language. TOCright Places Antarctica Lang Island Antarctica , East Antarctica Australia Lang Park , a stadium in Brisbane Dunmore Lang College , Macquarie University, Sydney Austria Lang, Austria , a town in the district of Leibniz in Styria Canada Lang, Saskatchewan , a village China Mount Lang , in Inner Mongolia Indonesia Lang Island , Sunda Strait United States Eugene Lang College The New School for Liberal Arts , New York City Computing S Lang , a programming language created in 1992 Javadoc SE package java.lang java lang , the core package of the Java programming language LANG, environment variable in POSIX standard that sets multiple locale parameters Other uses Battle of Lang Vei , Vietnam War See also Lange disambiguation Laing disambiguation disambig cs Lang de Lang es Lang fr Lang ht Lang ja no Lang pt Lang ro Lang ru sk Lang sv Lang olika betydelser ... more details
|