Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by sneeu

  1. sneeu

    Newbie Question: How to add timers in GUI via netbeans

    I think the way in which i would solve this problem is to have a Thread and an array which holds some kind of pair of long -> JPanels. The thread essentially checks the longs in the array to check if a given time has passed, and swaps over the associated Panel with the current one if it has...
  2. sneeu

    Get all Attributes of a final static class

    Here's the code for the abstract class... import java.util.Hashtable; import java.lang.reflect.Field; public abstract class Attributable { public Hashtable getAllAttributes() throws IllegalAccessException { Class c = this.getClass(); Field[] fs = c.getFields()...

Part and Inventory Search

Back
Top