
Java
Programming With Assertions - docs.oracle.com (HTTP)
An assertion is a statement in the Java TM programming language that enables you to test your assumptions about your program. For example, if you write a method that calculates the speed of a particle, you might assert that the calculated speed is less than the speed of light. Each assertion contains a boolean expression that you believe will be true when the assertion executes. If it is not true, the system will throw an error. By verifying that the boolean expression is indeed true, the assertion confirms your assumptions about the behavior of your program, increasing your confidence that the program is free of errors. Experience has shown that writing assertions while programming is one of the quickest and most effective ways to detect and correct bugs.Java theory and practice: Dealing with InterruptedException - www.ibm.com (HTTP)
Igor Minar's Blog: How a Java Application Can Discover its Process ID (PID) - blog.igorminar.com (HTTP)
In an equaly distributed table, a single cell is an intersection of a single row and a single column. However, for design purposes, it is often convenient to use group table column headers (above a sequence of cells), and sometimes several vertical cells are containing the same data, so they can be merged into one single large cell. Word processing and spreadsheet software usually uses terms like “merged cells” for joined cells, and in HTML terminology, merged cells are often denoted by column-spanning and row-spanning. We will use HTML terminology here, since it is more precise and takes into account a difference betweek horizontal (column) and vertical (row) merging. Column spanning is a HTML cell property that defines how much “logical” columns a table cell contains.
howto:column_spanning [SwingWiki]
Source Code Analysis Using Java 6 APIs
Reflecting generics
All text and content found at URLs starting with http://www.AngelikaLanger.com/GenericsFAQ/ (collectively, "the Java Generics FAQ") are the sole property of Angelika Langer. Copyright @ 2004-2013 by Angelika Langer . All rights reserved. Except as specifically granted below, you may not modify, copy, publish, sell, display, transmit (in any form, or by any means, electronic, mechanical, photocopying, recording, or otherwise), adapt, distribute, store in a retrieval system, create derivative works, or in any other way use or exploit the contents of the Java Generics FAQ, without the prior consent of the author. All rights, titles and interest, including copyrights and other applicable intellectual property rights, in any of the material belongs to the provider of the material. You do not acquire proprietary interest in such materials by accessing them on my web site.
Java Generics FAQs - Frequently Asked Questions
Java Custom Annotations | My experiments with technology
My earlier post covered in-built annotations supported by Java 5. Today we will look at developing custom java annotations on our own. Let’s begin by defining our own custom java annotation called Documentation. The definition of the annotation class is as below: The only difference between an interface definition and that of an annotation is the presence of @ before the interface keyword. Now the annotation can have its own members.This year one of my goals is to try and become proficient in using ANTLR. I think that learning to translate text or build an external DSL is skill that, although not used everyday, will be very useful to know. For my first attempt I settled on something fairly easy, a SQL like grammar that could be used to search for files and the content within those files.
Learning ANTLR part I - Blogs at Near Infinity
Design Patterns
Debugging Swing, the final summary
Posted by alexfromsun on February 16, 2006 at 11:49 AM PST It's taken some time to study all possible ways of detecting Event Dispatch Thread rule violations, and now I feel I this topic is about to be closed. But let me tell from the beginning:Awesome tip for debugging Swing by Sep 29
Generics Tutorial
Oracle Oracle Technology Network > Java Article Why, Where, and How JavaFX Makes Sense CaptainCasa moved from Swing to JavaFX for front-end infrastructure, explaining that implementing an employee desktop front end with native technology is a valid approach and that JavaFX is a good fit.10 things you need to know about Java 6
Need a digest, summary, compressed form, precis of what's up with Java SE 6 'Mustang', currently in beta ? Here it is, the top 10 things you need to know. 1. Web Services All developers get first class support for writing XML web service client applications.You are here: Home / Java 7 This page lists the proposed features in Java 7 and information about them. At this point, no Java 7 JSR has been created (although Danny Coward apparently is working on it). So, consider this a list of possible features and libraries, not the actual future contents of Java 7. I formerly published a weekly roundup of discussion on what’s been added to this page.
Java 7 features
Javadoc Home Page This document describes the style guide, tag and image conventions we use in documentation comments for Java programs written at Java Software, Oracle. It does not rehash related material covered elsewhere: For reference material on Javadoc tags, see the Javadoc reference pages . For the required semantic content of documentation comments, see Requirements for Writing Java API Specifications .
Writing Javadoc comments
API docs
Libraries

