Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / libjava / javax / swing / text / SimpleAttributeSet.java
blob1578a48ab27947bb0ae899af0e4a03e88c3d4cb9
1 /* SimpleAttributeSet.java --
2 Copyright (C) 2004 Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA.
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
39 package javax.swing.text;
41 import java.io.Serializable;
42 import java.util.Enumeration;
43 import java.util.Hashtable;
45 public class SimpleAttributeSet
46 implements MutableAttributeSet, Serializable, Cloneable
48 public static final AttributeSet EMPTY = new SimpleAttributeSet();
50 Hashtable tab;
52 public SimpleAttributeSet()
54 this(null);
57 public SimpleAttributeSet(AttributeSet a)
59 tab = new Hashtable();
60 if (a != null)
61 addAttributes(a);
64 public void addAttribute(Object name, Object value)
66 tab.put(name, value);
69 public void addAttributes(AttributeSet attributes)
71 Enumeration e = attributes.getAttributeNames();
72 while (e.hasMoreElements())
74 Object name = e.nextElement();
75 Object val = attributes.getAttribute(name);
76 tab.put(name, val);
80 public Object clone()
82 SimpleAttributeSet s = new SimpleAttributeSet();
83 s.tab = (Hashtable) tab.clone();
84 return s;
87 public boolean containsAttribute(Object name, Object value)
89 return tab.containsKey(name)
90 && tab.get(name).equals(value);
93 public boolean containsAttributes(AttributeSet attributes)
95 Enumeration e = attributes.getAttributeNames();
96 while (e.hasMoreElements())
98 Object name = e.nextElement();
99 Object val = attributes.getAttribute(name);
100 if (! containsAttribute(name, val))
101 return false;
103 return true;
106 public AttributeSet copyAttributes()
108 return (AttributeSet) clone();
111 public boolean equals(Object obj)
113 return (obj != null)
114 && (obj instanceof SimpleAttributeSet)
115 && ((SimpleAttributeSet)obj).tab.equals(this.tab);
118 public Object getAttribute(Object name)
120 Object val = tab.get(name);
121 if (val != null)
122 return val;
124 Object p = getResolveParent();
125 if (p != null && p instanceof AttributeSet)
126 return (((AttributeSet)p).getAttribute(name));
128 return null;
131 public int getAttributeCount()
133 return tab.size();
136 public Enumeration getAttributeNames()
138 return tab.keys();
141 public AttributeSet getResolveParent()
143 return (AttributeSet) tab.get(ResolveAttribute);
146 public int hashCode()
148 return tab.hashCode();
151 public boolean isDefined(Object attrName)
153 return tab.containsKey(attrName);
156 public boolean isEmpty()
158 return tab.isEmpty();
161 public boolean isEqual(AttributeSet attr)
163 return this.equals(attr);
166 public void removeAttribute(Object name)
168 tab.remove(name);
171 public void removeAttributes(AttributeSet attributes)
173 removeAttributes(attributes.getAttributeNames());
176 public void removeAttributes(Enumeration names)
178 while (names.hasMoreElements())
180 removeAttribute(names.nextElement());
184 public void setResolveParent(AttributeSet parent)
186 addAttribute(ResolveAttribute, parent);
189 public String toString()
191 return tab.toString();