home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 November / Chip_1998-11_cd.bin / tema / Cafe / jfc.bin / MockAttributeSet.java < prev    next >
Text File  |  1998-02-26  |  3KB  |  122 lines

  1. /*
  2.  * @(#)MockAttributeSet.java    1.2 97/12/16
  3.  * 
  4.  * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
  5.  * 
  6.  * This software is the confidential and proprietary information of Sun
  7.  * Microsystems, Inc. ("Confidential Information").  You shall not
  8.  * disclose such Confidential Information and shall use it only in
  9.  * accordance with the terms of the license agreement you entered into
  10.  * with Sun.
  11.  * 
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
  13.  * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  14.  * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  15.  * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
  16.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
  17.  * THIS SOFTWARE OR ITS DERIVATIVES.
  18.  * 
  19.  */
  20. package com.sun.java.swing.text.rtf;
  21.  
  22. import java.util.Dictionary;
  23. import java.util.Enumeration;
  24. import com.sun.java.swing.text.AttributeSet;
  25. import com.sun.java.swing.text.MutableAttributeSet;
  26.  
  27.  
  28. /* This AttributeSet is made entirely out of tofu and Ritz Crackers
  29.    and yet has a remarkably attribute-set-like interface! */
  30. class MockAttributeSet
  31.     implements AttributeSet, MutableAttributeSet
  32. {
  33.     public Dictionary backing;
  34.  
  35.     public boolean isEmpty()
  36.     {
  37.          return backing.isEmpty();
  38.     }
  39.     
  40.     public int getAttributeCount()
  41.     {
  42.          return backing.size();
  43.     }
  44.  
  45.     public boolean isDefined(Object name)
  46.     {
  47.          return ( backing.get(name) ) != null;
  48.     }
  49.  
  50.     public boolean isEqual(AttributeSet attr)
  51.     {
  52.          throw new InternalError("MockAttributeSet: charade revealed!");
  53.     }
  54.  
  55.     public AttributeSet copyAttributes()
  56.     {
  57.          throw new InternalError("MockAttributeSet: charade revealed!");
  58.     }
  59.     
  60.     public Object getAttribute(Object name)
  61.     {
  62.         return backing.get(name);
  63.     }
  64.  
  65.     public void addAttribute(Object name, Object value)
  66.     {
  67.         backing.put(name, value);
  68.     }
  69.     
  70.     public void addAttributes(AttributeSet attr)
  71.     {
  72.         Enumeration as = attr.getAttributeNames();
  73.     while(as.hasMoreElements()) {
  74.         Object el = as.nextElement();
  75.         backing.put(el, attr.getAttribute(el));
  76.     }
  77.     }
  78.  
  79.     public void removeAttribute(Object name)
  80.     {
  81.         backing.remove(name);
  82.     }
  83.  
  84.     public void removeAttributes(AttributeSet attr)
  85.     {
  86.          throw new InternalError("MockAttributeSet: charade revealed!");
  87.     }
  88.  
  89.     public void removeAttributes(Enumeration en)
  90.     {
  91.          throw new InternalError("MockAttributeSet: charade revealed!");
  92.     }
  93.  
  94.     public void setResolveParent(AttributeSet pp)
  95.     {
  96.          throw new InternalError("MockAttributeSet: charade revealed!");
  97.     }
  98.  
  99.     
  100.     public Enumeration getAttributeNames()
  101.     {
  102.          return backing.keys();
  103.     }
  104.     
  105.     public boolean containsAttribute(Object name, Object value)
  106.     {
  107.          throw new InternalError("MockAttributeSet: charade revealed!");
  108.     }
  109.  
  110.     public boolean containsAttributes(AttributeSet attr)
  111.     {
  112.          throw new InternalError("MockAttributeSet: charade revealed!");
  113.     }
  114.  
  115.     public AttributeSet getResolveParent()
  116.     {
  117.          throw new InternalError("MockAttributeSet: charade revealed!");
  118.     }
  119. }
  120.     
  121.     
  122.