Searched refs:AttributeMap (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/font/
H A DAttributeMap.java57 public final class AttributeMap extends AbstractMap<TextAttribute, Object> { class in inherits:AbstractMap
61 public AttributeMap(AttributeValues values) { method in class:AttributeMap
H A DAttributeValues.java314 if (map instanceof AttributeMap &&
315 ((AttributeMap) map).getValues() != null) {
316 merge(((AttributeMap)map).getValues(), mask);
762 if (map instanceof AttributeMap &&
763 ((AttributeMap) map).getValues() != null) {
764 return ((AttributeMap)map).getValues().justification;
776 if (map instanceof AttributeMap &&
777 ((AttributeMap) map).getValues() != null) {
778 return ((AttributeMap)map).getValues().numericShaping;
818 if (map instanceof AttributeMap
[all...]
H A DGlyphLayout.java374 AttributeValues values = ((AttributeMap)font.getAttributes()).getValues();
H A DStandardGlyphVector.java177 AttributeValues values = ((AttributeMap)font.getAttributes()).getValues();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DElementImpl.java77 protected AttributeMap attributes;
139 attributes = new AttributeMap(this, null);
157 newnode.attributes = (AttributeMap) attributes.cloneMap(newnode);
501 attributes = new AttributeMap(this, null);
549 attributes = new AttributeMap(this, null);
663 attributes = new AttributeMap(this, null);
808 attributes = new AttributeMap(this, null);
825 attributes = new AttributeMap(this, null);
1138 attributes = new AttributeMap(this, null);
1148 attributes = new AttributeMap(thi
[all...]
H A DAttributeMap.java30 * AttributeMap inherits from NamedNodeMapImpl and extends it to deal with the
43 * @version $Id: AttributeMap.java,v 1.7 2010-11-01 04:39:37 joehw Exp $
45 public class AttributeMap extends NamedNodeMapImpl { class in inherits:NamedNodeMapImpl
55 protected AttributeMap(ElementImpl ownerNode, NamedNodeMapImpl defaults) { method in class:AttributeMap
480 AttributeMap newmap =
481 new AttributeMap((ElementImpl) ownerNode, null);
485 } // cloneMap():AttributeMap
511 } // cloneContent():AttributeMap
517 void moveSpecifiedAttributes(AttributeMap srcmap) {
531 } // moveSpecifiedAttributes(AttributeMap)
[all...]
H A DDOMNormalizer.java329 AttributeMap attributes = (elem.hasAttributes()) ? (AttributeMap) elem.getAttributes() : null;
733 protected final void namespaceFixUp (ElementImpl element, AttributeMap attributes){
1452 protected AttributeMap fAttributes;
1459 public void setAttributes(AttributeMap attributes, CoreDocumentImpl doc, ElementImpl elem) {
/openjdk7/jdk/src/share/classes/java/awt/
H A DFont.java50 import sun.font.AttributeMap;
789 if (attributes instanceof AttributeMap &&
790 ((AttributeMap)attributes).getValues() != null) {
791 AttributeValues values = ((AttributeMap)attributes).getValues();
1814 return new AttributeMap(getAttributeValues());
/openjdk7/jdk/src/share/classes/java/text/
H A DAttributedString.java946 // returning Hashtable saves AttributeMap from dealing with emptiness
949 return new AttributeMap(currentRunIndex, beginIndex, endIndex);
1043 final private class AttributeMap extends AbstractMap<Attribute,Object> { class in class:AttributedString
1049 AttributeMap(int runIndex, int beginIndex, int endIndex) { method in class:AttributedString.AttributeMap

Completed in 83 milliseconds