Context.java :  » Project-Management » memoranda » net » sf » memoranda » ui » htmleditor » Java Open Source

Java Open Source » Project Management » memoranda 
memoranda » net » sf » memoranda » ui » htmleditor » Context.java
package net.sf.memoranda.ui.htmleditor;
import java.util.Hashtable;

/**
 * <p>Title: </p>
 * <p>Description: </p>
 * <p>Copyright: Copyright (c) 2002</p>
 * <p>Company: </p>
 * @author unascribed
 * @version 1.0
 */

class Context {

  static java.util.Hashtable hash = new Hashtable();

  public static Object get(Object key) {
    return hash.get(key);
  }

  public static void put(Object key, Object value) {
    hash.put(key, value);
  }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.