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:1132

    Document count:topicid:1001 (648) subtopicid:1132 (96)

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

    49%
    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


    48%
    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


    48%
    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


    48%
    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


    46%
    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


    46%
    Find Similar

    Asynchronous processing support in Servlet 3.0 - JavaWorld
    Feb. 19, 2009
    The revolution didn't stop with Ajax, and the incoming Servlet 3.0 specification will prove it. Find out why Servlet 3.0's support for asynchronous processing is the next big leap forward for developing collaborative, ...
    http://www.javaworld.com/javaworld/jw-02-2009/jw-02-servlet3.html


    46%
    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


    46%
    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


    45%
    Find Similar

    Lamport's one-time password algorithm (or, don't talk to complete strangers!) - JavaWorld
    Mar. 31, 2009
    The Lamport algorithm provides an elegant scheme for generating and applying one-time passwords, or OTP. Find out how Lamport works, then see it in action with an OTP reference implementation for an extensible, Java- ...
    http://www.javaworld.com/javaworld/jw-03-2009/jw-03-lamport-otp.html


    45%
    Find Similar

    Understanding actor concurrency, Part 1: Actors in Erlang - JavaWorld
    Feb. 24, 2009
    As multicore hardware continues to mature, the shared-state concurrency model that Java and other mainstream languages depend on is headed toward obsolescence. Learn how Erlang, a functional language, implements an ...
    http://www.javaworld.com/javaworld/jw-02-2009/jw-02-actor- concurrency1.html


    45%
    Find Similar

    User interfaces for object-oriented systems, Part 5: Useful stuff - JavaWorld
    Jan. 01, 2000
    This article begins putting the object-oriented principles discussed in this series to practical use. The author builds a small but nontrivial application: a Reverse Polish Notation calculator that can display a user ...
    http://www.javaworld.com/javaworld/jw-01-2000/jw-01-toolbox.html


    45%
    Find Similar

    Java Tip 68: Learn how to implement the Command pattern in Java - JavaWorld
    Feb. 01, 1999
    Sometimes it's necessary to issue requests to objects without knowing anything about the operation being requested or the receiver of the request. In procedural languages, this type of communication is accomplished via ...
    http://www.javaworld.com/javaworld/javatips/jw-javatip68.html


    45%
    Find Similar

    Java Tip 68: Learn how to implement the Command pattern in Java - JavaWorld
    Feb. 01, 1999
    Sometimes it's necessary to issue requests to objects without knowing anything about the operation being requested or the receiver of the request. In procedural languages, this type of communication is accomplished via ...
    http://www.javaworld.com/javaworld/javatips/jw-javatip68.html


    45%
    Find Similar

    The 'event generator' idiom - JavaWorld
    Sep. 01, 1998
    In this installment of the Design Techniques column, Bill proposes the "event generator" as a Java idiom. The article provides a background on the concepts of patterns and idioms, describes the observer pattern, and ...
    http://www.javaworld.com/jw-09-1998/jw-09-techniques.html


    43%
    Find Similar

    Second-generation aspect-oriented programming - JavaWorld
    Jul. 05, 2004
    While aspect-oriented programming (AOP) offers a powerful means of modularizing programs, and a robust, feature-rich implementation for the Java platform is available in AspectJ, AOP is not yet in the average Java ...
    http://www.javaworld.com/javaworld/jw-07-2004/jw-0705-aop.html


     prev   1   2   3   4   5   6   7  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.