openamf/src/java/flashgateway/io ASObject.java,1.8,1.9

[email protected] Sat, 16 Aug 2003 06:11:18 -0700
Newsgroups gmane.comp.java.openamf.cvs
Message-ID <[email protected]>
Update of /cvsroot/openamf/openamf/src/java/flashgateway/io
In directory sc8-pr-cvs1:/tmp/cvs-serv26881/java/flashgateway/io

Modified Files:
	ASObject.java 
Log Message:
Serializer/Deserializer cleanup

Index: ASObject.java
===================================================================
RCS file: /cvsroot/openamf/openamf/src/java/flashgateway/io/ASObject.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** ASObject.java	16 Aug 2003 03:13:13 -0000	1.8
--- ASObject.java	16 Aug 2003 13:11:15 -0000	1.9
***************
*** 20,156 ****
  public class ASObject extends HashMap {
  
!     /**
!      * Object type
!      */
!     private String type;
  
!     public ASObject() {
!         super();
!     }
  
!     /**
!      * Creates ASObject with type
!      *
!      * @param type
!      */
!     public ASObject(String type) {
!         super();
!         this.type = type;
!     }
  
!     /**
!      * Gets object type
!      *
!      * @return
!      * 
!      * @see #setType(String)
!      * 
!      */
!     public String getType() {
!         return type;
!     }
  
!     /**
!      * Sets object type
!      *
!      * @param type
!      * 
!      * @see #getType()
!      * 
!      */
!     public void setType(String type) {
!         this.type = type;
!     }
  
!     /**
!      * Returns <tt>true</tt> if this map contains a mapping for the
!      * specified key.<br>
!      *
!      * @param   key   The key whose presence in this map is to be tested
!      * @return <tt>true</tt> if this map contains a mapping for the specified
!      * key.
!      */
!     public boolean containsKey(Object key) {
!         return super.containsKey(toLowerCase(key));
!     }
  
!     /**
!      * Returns the value to which the specified key is mapped in this identity
!      * hash map, or <tt>null</tt> if the map contains no mapping for this key.
!      * A return value of <tt>null</tt> does not <i>necessarily</i> indicate
!      * that the map contains no mapping for the key; it is also possible that
!      * the map explicitly maps the key to <tt>null</tt>. The
!      * <tt>containsKey</tt> method may be used to distinguish these two cases.
!      *
!      * @param   key the key whose associated value is to be returned.
!      * @return  the value to which this map maps the specified key, or
!      *          <tt>null</tt> if the map contains no mapping for this key.
!      * @see #put(Object, Object)
!      */
!     public Object get(Object key) {
!         return super.get(toLowerCase(key));
!     }
  
!     /**
!      * Associates the specified value with the specified key in this map.
!      * If the map previously contained a mapping for this key, the old
!      * value is replaced.
!      *
!      * @param key key with which the specified value is to be associated.
!      * @param value value to be associated with the specified key.
!      * @return previous value associated with specified key, or <tt>null</tt>
!      *	       if there was no mapping for key.  A <tt>null</tt> return can
!      *	       also indicate that the HashMap previously associated
!      *	       <tt>null</tt> with the specified key.
!      */
!     public Object put(Object key, Object value) {
!         return super.put(toLowerCase(key), value);
!     }
  
!     /**
!      * Removes the mapping for this key from this map if present.
!      *
!      * @param  key key whose mapping is to be removed from the map.
!      * @return previous value associated with specified key, or <tt>null</tt>
!      *	       if there was no mapping for key.  A <tt>null</tt> return can
!      *	       also indicate that the map previously associated <tt>null</tt>
!      *	       with the specified key.
!      */
!     public Object remove(Object key) {
!         return super.remove(toLowerCase(key));
!     }
  
!     /**
!      * Gets lower case object if object was instance of String
!      *
!      * @param key
!      * @return
!      */
!     private Object toLowerCase(Object key) {
!         if (key != null && key instanceof String) {
!             key = ((String) key).toLowerCase();
!         }
!         return key;
!     }
  
!     /**
!      *
!      * @return this method may return null
!      * 
!      * @see #setType(String)
!      * @see #getType()
!      * 
!      */
!     public Object instantiate() {
!         Object ret;
!         try {
!         	ClassLoader loader = Thread.currentThread().getContextClassLoader();
!         	Class clazz = loader.loadClass(type);
!             ret = clazz.newInstance();
!         } catch (Exception e) {
!             ret = null;
!         }
!         return ret;
!     }
  
  }
--- 20,156 ----
  public class ASObject extends HashMap {
  
! 	/**
! 	 * Object type
! 	 */
! 	private String type;
  
! 	public ASObject() {
! 		super();
! 	}
  
! 	/**
! 	 * Creates ASObject with type
! 	 *
! 	 * @param type
! 	 */
! 	public ASObject(String type) {
! 		super();
! 		this.type = type;
! 	}
  
! 	/**
! 	 * Gets object type
! 	 *
! 	 * @return
! 	 * 
! 	 * @see #setType(String)
! 	 * 
! 	 */
! 	public String getType() {
! 		return type;
! 	}
  
! 	/**
! 	 * Sets object type
! 	 *
! 	 * @param type
! 	 * 
! 	 * @see #getType()
! 	 * 
! 	 */
! 	public void setType(String type) {
! 		this.type = type;
! 	}
  
! 	/**
! 	 * Returns <tt>true</tt> if this map contains a mapping for the
! 	 * specified key.<br>
! 	 *
! 	 * @param   key   The key whose presence in this map is to be tested
! 	 * @return <tt>true</tt> if this map contains a mapping for the specified
! 	 * key.
! 	 */
! 	public boolean containsKey(Object key) {
! 		return super.containsKey(toLowerCase(key));
! 	}
  
! 	/**
! 	 * Returns the value to which the specified key is mapped in this identity
! 	 * hash map, or <tt>null</tt> if the map contains no mapping for this key.
! 	 * A return value of <tt>null</tt> does not <i>necessarily</i> indicate
! 	 * that the map contains no mapping for the key; it is also possible that
! 	 * the map explicitly maps the key to <tt>null</tt>. The
! 	 * <tt>containsKey</tt> method may be used to distinguish these two cases.
! 	 *
! 	 * @param   key the key whose associated value is to be returned.
! 	 * @return  the value to which this map maps the specified key, or
! 	 *          <tt>null</tt> if the map contains no mapping for this key.
! 	 * @see #put(Object, Object)
! 	 */
! 	public Object get(Object key) {
! 		return super.get(toLowerCase(key));
! 	}
  
! 	/**
! 	 * Associates the specified value with the specified key in this map.
! 	 * If the map previously contained a mapping for this key, the old
! 	 * value is replaced.
! 	 *
! 	 * @param key key with which the specified value is to be associated.
! 	 * @param value value to be associated with the specified key.
! 	 * @return previous value associated with specified key, or <tt>null</tt>
! 	 *	       if there was no mapping for key.  A <tt>null</tt> return can
! 	 *	       also indicate that the HashMap previously associated
! 	 *	       <tt>null</tt> with the specified key.
! 	 */
! 	public Object put(Object key, Object value) {
! 		return super.put(toLowerCase(key), value);
! 	}
  
! 	/**
! 	 * Removes the mapping for this key from this map if present.
! 	 *
! 	 * @param  key key whose mapping is to be removed from the map.
! 	 * @return previous value associated with specified key, or <tt>null</tt>
! 	 *	       if there was no mapping for key.  A <tt>null</tt> return can
! 	 *	       also indicate that the map previously associated <tt>null</tt>
! 	 *	       with the specified key.
! 	 */
! 	public Object remove(Object key) {
! 		return super.remove(toLowerCase(key));
! 	}
  
! 	/**
! 	 * Gets lower case object if object was instance of String
! 	 *
! 	 * @param key
! 	 * @return
! 	 */
! 	private Object toLowerCase(Object key) {
! 		if (key != null && key instanceof String) {
! 			key = ((String) key).toLowerCase();
! 		}
! 		return key;
! 	}
  
! 	/**
! 	 *
! 	 * @return this method may return null
! 	 * 
! 	 * @see #setType(String)
! 	 * @see #getType()
! 	 * 
! 	 */
! 	public Object instantiate() {
! 		Object ret;
! 		try {
! 			ClassLoader loader = Thread.currentThread().getContextClassLoader();
! 			Class clazz = loader.loadClass(type);
! 			ret = clazz.newInstance();
! 		} catch (Exception e) {
! 			ret = null;
! 		}
! 		return ret;
! 	}
  
  }




-------------------------------------------------------
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01