InfoWorld: Modernizing IT

JavaWorld: Solutions for Java Developers

Advanced search
  • Research Centers
  • + Core Java
    • Client-side Java
    • Design Patterns
    • Java Language
    • Java Platform APIs
    • Java Programming Concepts
    • Swing/GUI Programming
    • Threads/Concurrency
  • + Enterprise Java
    • Ajax/RIA/Web 2.0
    • Architecture & Scalability
    • Enterprise Best Practices
    • Java & XML
    • Java Web Development
    • Web Services & SOAs
  • + Mobile Java
    • + Tools & Methods
      • Application Servers
      • Data Management/RDBMS
      • Enterprise Middleware
      • Java IDEs
      • Java Security
      • Open Source Tools
      • Scripting/Other Languages
      • Software Development Lifecycle
      • Software Development Methodologies
      • Testing & Debugging
      • Web Application Frameworks
    • + JavaWorld Archives
      • Design Techniques
      • How-to Java
      • Java 101
      • Java Design Patterns
      • Java Q&A
      • Java Tips
      • Java Traps
      • Server-side Java
      • Under the Hood
    • Site Resources
    • Featured Articles
    • News & Views
    • Community
    • Java Q&A
    • JW Blogs
    • Podcasts
    • Site Map
    • Careers
    • Newsletters
    • Whitepapers
    • RSS Feeds
    • About JavaWorld
    • Advertise
    • Write for JW

    • Featured articles

    Results for: +topicid:1001 +subtopicid:1108

    Document count:topicid:1001 (648) subtopicid:1108 (84)

    about 84 results found, scored using date, sorted by relevance
    score without date  
    prev16-30next

    51%
    Find Similar

    Let your Ant enjoy Spring - JavaWorld
    Feb. 14, 2005
    This article presents an Ant task extension that allows the invocation of an IoC (Inversion of Control) managed object or any unmanaged object. It also shows how OGNL (Object Graph Navigation Language) can be used to ...
    http://www.javaworld.com/javaworld/jw-02-2005/jw-0214-antspring.html


    50%
    Find Similar

    Create client-side user interfaces in HTML, Part 2 - JavaWorld
    Nov. 14, 2003
    This "Create Client-Side User Interfaces in HTML" series continues by examining the HTMLPane sources. Part 2 offers examples of how to customize the JEditorPane to support custom tags and also provides an extended ...
    http://www.javaworld.com/javaworld/jw-11-2003/jw-1114-toolbox.html


    50%
    Find Similar

    Create client-side user interfaces in HTML, Part 1 - JavaWorld
    Oct. 03, 2003
    This article presents a variant on Swing's JEditorPane that makes it possible to specify an entire screen of your client-side user interface (UI) in HTML. JEditorPane is designed to let you put an HTML text component ...
    http://www.javaworld.com/javaworld/jw-10-2003/jw-1003-toolbox.html


    50%
    Find Similar

    Customize SwingWorker to improve Swing GUIs - JavaWorld
    Jun. 06, 2003
    The presentation layer of Swing-based applications mainly consists of event-handling logic, layout properties, and graphical user interface (GUI) components. While such code should be easy to program because of the ...
    http://www.javaworld.com/javaworld/jw-06-2003/jw-0606-swingworker.html


    49%
    Find Similar

    More on getters and setters - JavaWorld
    Jan. 02, 2004
    Allen Holub's past Java Toolbox column, " Why Getter and Setter Methods Are Evil," discussed the downside of the getter/setter idiom. That article presented a design-level solution. (By keeping your design in the ...
    http://www.javaworld.com/javaworld/jw-01-2004/jw-0102-toolbox.html


    49%
    Find Similar

    Solve the date-selection problem once and for all - JavaWorld
    Jul. 04, 2003
    The Java Toolbox column returns with this tutorial about a date-selection widget that displays a calendar and lets you select a date by clicking on it. It heavily uses the Gang of Four Decorator design pattern, so it ...
    http://www.javaworld.com/javaworld/jw-07-2003/jw-0704-toolbox.html


    49%
    Find Similar

    Simply Singleton - JavaWorld
    Apr. 25, 2003
    Sometimes it's appropriate to have exactly one instance of a class: window managers, print spoolers, and filesystems are prototypical examples. Typically, those types of objects—known as singletons—are accessed by ...
    http://www.javaworld.com/javaworld/jw-04-2003/ jw-0425-designpatterns.html


    49%
    Find Similar

    An inside view of Observer - JavaWorld
    Mar. 28, 2003
    The Observer pattern lets you build extensible software with pluggable objects by allowing communication between loosely coupled objects. In his latest Java Design Patterns column, David Geary explores the Observer ...
    http://www.javaworld.com/javaworld/jw-03-2003/ jw-0328-designpatterns.html


    47%
    Find Similar

    Building cloud-ready, multicore-friendly applications, Part 1: Design principles -..
    Mar. 03, 2009
    Atomicity, statelessness, idempotence, and parallelism: that's your ticket to code that's ready for both modern multicore chips and the future of distributed -- or cloud -- computing. Appistry engineer Guerry Semones ...
    http://www.javaworld.com/javaworld/jw-03-2009/jw-03-multicore-and- cloud-ready-1.html


    47%
    Find Similar

    Foundations of JSP design patterns: The View Helper pattern - JavaWorld
    Nov. 01, 2004
    This article, an excerpt from Foundations of JSP Design Patterns (Apress, 2004), describes the View Helper pattern and shows how to build a few useful view helpers that you can add to your own toolkit.
    http://www.javaworld.com/javaworld/jw-11-2004/jw-1101-viewhelper.html


    47%
    Find Similar

    Adopt Adapter - JavaWorld
    Sep. 26, 2003
    Software usually consists of a mixture of in-house and purchased software that must work together to produce a seamless user interface. But disparate software packages are not aware of each other's object models, so ...
    http://www.javaworld.com/javaworld/jw-09-2003/ jw-0926-designpatterns.html


    47%
    Find Similar

    Follow the Chain of Responsibility - JavaWorld
    Aug. 29, 2003
    The Chain of Responsibility (CoR) pattern decouples the sender and receiver of a request by interposing a chain of objects between them. In this installment of Java Design Patterns, David Geary discusses the CoR pattern ...
    http://www.javaworld.com/javaworld/jw-08-2003/ jw-0829-designpatterns.html


    47%
    Find Similar

    Why extends is evil - JavaWorld
    Aug. 01, 2003
    Most good designers avoid implementation inheritance (the extends relationship) like the plague. As much as 80 percent of your code should be written entirely in terms of interfaces, not concrete base classes. The Gang ...
    http://www.javaworld.com/javaworld/jw-08-2003/jw-0801-toolbox.html


    47%
    Find Similar

    Make your apps fly - JavaWorld
    Jul. 25, 2003
    Allocating numerous objects can be detrimental to your application's performance. In this installment of Java Design Patterns, David Geary shows you how to implement the Flyweight design pattern to greatly reduce the ...
    http://www.javaworld.com/javaworld/jw-07-2003/ jw-0725-designpatterns.html


    47%
    Find Similar

    Make the Java-Oracle9i connection - JavaWorld
    Jun. 13, 2003
    This article provides Java programmers with techniques for utilizing Oracle9i's new object-oriented features such as inheritance, custom constructors, dynamic dispatch, array descriptors, and mapping strategies from a ...
    http://www.javaworld.com/javaworld/jw-06-2003/jw-0613-oracle9i.html


     prev   1   2   3   4   5   6  next 


    Start new search   Search these results  

       Help  Advanced  Powered by Ultraseek
    • JW's Most Read
    • Editor's Choice

    Recent:

    • Java Tips: The Serialization algorithm revealed
    • Know your Oracle application server
    • SwingX, JRuby: Survivors?
    • Cloud-ready, multicore-friendly apps, Part 2
    • Lean service architectures with Java EE 6

    Archives:

    • Hello, OSGi: Bundles for beginners (2008)
    • Sockets programming in Java: A tutorial (1996)
    • Understanding JPA, Part 1 (2008)
    • Smartly load your properties (2003)
    • REST for Java developers, Part 1 (2008)

    Fresh perspectives in JW Blogs:

    • Java to Go: As the Java world turns
    • Irregular Expressions: Career advice for coders
    • High Performance Java: On high-octane Java
    • Java Tips: Programming tips, tricks, how-to's

    JavaWorld's Daily Brew: Starting conversations in the Java developer community

    Newsletter sign-up
    View all newsletters

    Sign up for our technology specific newsletters.

    Enterprise Java
    Email Address:

    What is IT Asked & Answered

    A place to submit your nagging technology question for review by our experts - and you.

    Keep on top of the questions from your desktop or favorite social media site.

    Sponsored Links

    Sponsored Links


    • RESEARCH CENTERS Core Java Enterprise Java Java ME Tools & Methods JavaWorld Archives
    • IDG Network CIO Computerworld CSO Demo GamePro
    • Games.net IDGconnect.com IDG World Expo Infoworld Linuxworld.com
    • MacUser Macworld NetworkWorld.com PC World Playlistmag.com
    About Us | Advertise | Contact Us | Terms of Service/Privacy Copyright, 2006-2008 Network World, Inc. All rights reserved.