Scott Stanchfield
Home
Videos
Articles
Tools
Publications
About
JavaDude.com
Categories
Articles (12)
Videos (12)
Tools (8)
Tags
android (2)
android-studio (1)
antlr (3)
beans (2)
code-generation (1)
design (6)
dsl (4)
eclipse (3)
java (28)
kotlin (1)
language (12)
parsing (5)
patterns (2)
xtext (2)
Posts
32 posts
««
«
1
2
3
4
»
»»
Effective Eclipse
May 19, 2010
A JUG talk from May 2010 I presented on Eclipse tips and tricks. ......
Videos
eclipse
Java Annotations
Jan 20, 2010
I presented a talk on Java Annotations to the Columbia, Maryland Java Users Group on 1/19/2010. ......
Videos
java
language
ANTLR 3.x Tutorial
Dec 21, 2009
A video tutorial on ANTLR 3.x ......
Videos
java
parsing
antlr
language
dsl
ANTXR
Nov 2, 2005
ANTXR: Easy XML Parsing, based on the ANTLR parser generator ......
Tools
java
Import on Demand is EVIL!
May 22, 2004
Introduction There should never exist any language feature such that adding a new type to a referenced package can break your existing code. Import-on-demand is one such feature… And it’s evil… ......
Articles
java
language
Layering Applications
May 16, 2001
Layering Applications Introduction Maintainable applications can be quite tricky to develop. One of the keys to creating such a beast, is to properly layer your application. ......
Articles
java
design
Java is Pass-by-Value, Dammit!
May 16, 2001
Introduction I finally decided to write up a little something about Java’s parameter passing. I’m really tired of hearing folks (incorrectly) state “primitives are passed by value, objects are passed by reference”. ......
Articles
java
language
Using the Right Comment in Java
Mar 4, 2000
Java provides three types of comments; when should we use which? ......
Articles
java
language
Using JavaBean Accessors
Mar 4, 2000
Accessors are a key ingredient to proper encapsulation. The can restrict access to only read/write data, inform other objects of changes to data, and perform validation on new values being set. Consistent accessor usage makes class modification easy and transparent. ......
Articles
java
language
design
The JavaBean Component Model
Mar 4, 2000
The basics of the JavaBean Component Model ......
Articles
java
beans
design