Searched refs:attributes (Results 201 - 225 of 377) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/org/glassfish/gmbal/
H A DAMXClient.java222 public AttributeList getAttributes(String[] attributes) { argument
224 return server.getAttributes(oname, attributes);
234 public AttributeList setAttributes(AttributeList attributes) { argument
236 return server.setAttributes(oname, attributes);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DAnnotation.java62 a.attributes.put(new QName(ns,localName,prefix),
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/fastinfoset/sax/helpers/
H A DEncodingAlgorithmAttributesImpl.java98 * @param attributes The existing Attributes object.
100 public EncodingAlgorithmAttributesImpl(Attributes attributes) { argument
101 this(null, attributes);
112 * @param attributes The existing Attributes object.
115 Attributes attributes) {
124 if (attributes != null) {
125 if (attributes instanceof EncodingAlgorithmAttributes) {
126 setAttributes((EncodingAlgorithmAttributes)attributes);
128 setAttributes(attributes);
323 * @param atts The attributes t
114 EncodingAlgorithmAttributesImpl(Map registeredEncodingAlgorithms, Attributes attributes) argument
[all...]
/openjdk7/jdk/test/javax/management/MBeanInfo/
H A DMBeanInfoEqualsTest.java238 MBeanAttributeInfo[] attributes,
242 super(className, description, attributes, constructors, operations,
253 private final MBeanAttributeInfo[] attributes; field in class:MBeanInfoEqualsTest.MutableMBeanInfo
260 MBeanAttributeInfo[] attributes,
267 this.attributes = attributes;
282 return attributes;
236 ImmutableMBeanInfo(String className, String description, MBeanAttributeInfo[] attributes, MBeanConstructorInfo[] constructors, MBeanOperationInfo[] operations, MBeanNotificationInfo[] notifications) argument
258 MutableMBeanInfo(String className, String description, MBeanAttributeInfo[] attributes, MBeanConstructorInfo[] constructors, MBeanOperationInfo[] operations, MBeanNotificationInfo[] notifications) argument
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DCodeHTML.java429 Attribute[] attributes = code.getAttributes();
430 for(int i=0; i < attributes.length; i++) {
431 if(attributes[i].getTag() == ATTR_LOCAL_VARIABLE_TABLE) {
432 LocalVariable[] vars = ((LocalVariableTable)attributes[i]).getLocalVariableTable();
534 // Get the method's attributes, the Code Attribute in particular
535 Attribute[] attributes= method.getAttributes();
553 if(attributes.length > 0) {
555 for(int i=0; i < attributes.length; i++) {
556 byte tag = attributes[i].getTag();
562 file.print("<LI>" + attributes[
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DInternationalFormatter.java770 * Returns true if <code>attributes</code> is null or empty.
772 boolean isLiteral(Map attributes) { argument
773 return ((attributes == null) || attributes.size() == 0);
799 Map attributes = iterator.getAttributes();
800 boolean set = isLiteral(attributes);
828 * Selects the fields identified by <code>attributes</code>.
860 Object getAdjustField(int start, Map attributes) { argument
898 * <code>attributes</code> gives the field the cursor is in (may be
902 Object adjustValue(Object value, Map attributes, Objec argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DMap.java144 (AttributeSet attributes) {
145 Object shape = attributes.getAttribute(HTML.Attribute.SHAPE);
156 rc = new RectangleRegionContainment(attributes);
159 rc = new CircleRegionContainment(attributes);
162 rc = new PolygonRegionContainment(attributes);
168 // Something wrong with attributes.
143 createRegionContainment(AttributeSet attributes) argument
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTextLayout.java102 * <li>paragraph attributes are extracted and examined,
108 * a default font using the attributes that have been defined
367 * device resolution, and attributes such as antialiasing. This
385 Map attributes = null;
387 attributes = font.getAttributes();
392 fastInit(text, font, attributes, frc);
394 AttributedString as = attributes == null
396 : new AttributedString(string, attributes);
406 * All the text is styled using the provided attributes.
411 * @param attributes th
419 TextLayout(String string, Map<? extends Attribute,?> attributes, FontRenderContext frc) argument
451 singleFont(char[] text, int start, int limit, Map attributes) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/
H A DJAXPValidatorComponent.java178 public void startElement(QName element, XMLAttributes attributes, Augmentations augs) throws XNIException { argument
179 fCurrentAttributes = attributes;
181 xni2sax.startElement(element,attributes,null);
190 public void emptyElement(QName element, XMLAttributes attributes, Augmentations augs) throws XNIException { argument
191 startElement(element,attributes,augs);
401 public void startElement(QName element, XMLAttributes attributes, Augmentations augs) throws XNIException { argument
417 fAttributesProxy.setAttributes(attributes);
442 public void emptyElement(QName element, XMLAttributes attributes, Augmentations augs) throws XNIException { argument
443 startElement(element,attributes,augs);
/openjdk7/jdk/src/share/classes/com/sun/security/auth/module/
H A DJndiLoginModule.java532 Attributes attributes = result.getAttributes();
551 Attribute pwd = attributes.get(USER_PWD);
585 Attribute uid = attributes.get(USER_UID);
595 Attribute gid = attributes.get(USER_GID);
611 attributes = result.getAttributes();
613 gid = attributes.get(GROUP_ID);
/openjdk7/jdk/src/share/classes/java/awt/
H A DFont.java177 * attributes. This should very rarely pose a problem
178 * since these attributes are typically used only in special
198 * convert these to the platform-specific attributes for that
208 * <p>Several attributes will cause additional rendering overhead
210 * attributes, the <code>{@link #hasLayoutAttributes()}</code> method
580 /* This constructor is used by deriveFont when attributes is null */
629 * But when deriving a font in these cases two particular attributes
680 * Creates a new <code>Font</code> with the specified attributes.
684 * (see {@link #getAvailableAttributes}). Only attributes that have
687 * If <code>attributes</cod
693 Font(Map<? extends Attribute, ?> attributes) argument
783 getFont(Map<? extends Attribute, ?> attributes) argument
1953 deriveFont(Map<? extends Attribute, ?> attributes) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DClassWriter.java171 Signature_attribute sigAttr = getSignature(cf.attributes);
205 attrWriter.write(cf, cf.attributes, constant_pool);
354 Signature_attribute sigAttr = getSignature(f.attributes);
370 Attribute a = f.attributes.get(Attribute.ConstantValue);
389 for (Attribute attr: f.attributes)
418 Signature_attribute sigAttr = getSignature(m.attributes);
455 Attribute e_attr = m.attributes.get(Attribute.Exceptions);
487 Attribute c_attr = m.attributes.get(Attribute.Code);
505 attrWriter.write(code, code.attributes.get(Attribute.LineNumberTable), constant_pool);
506 attrWriter.write(code, code.attributes
551 getSignature(Attributes attributes) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DFontResolver.java213 * from attributes. The font index, which should have been produced
215 * of the Font reflect the properties in attributes. Any Font or
216 * font family specifications in attributes are ignored, on the
220 * @param attributes a Map from which the size and style of the Font
225 public Font getFont(int index, Map attributes) { argument
232 return font.deriveFont(attributes);
/openjdk7/jdk/src/share/classes/javax/imageio/metadata/
H A DIIOMetadataNode.java285 * attributes.
287 private List attributes = new ArrayList(); field in class:IIOMetadataNode
428 * Returns a <code>NamedNodeMap</code> containing the attributes of
431 * @return a <code>NamedNodeMap</code> containing the attributes of
435 return new IIONamedNodeMap(attributes);
771 attributes.add(new IIOAttr(this, name, value));
789 int numAttributes = attributes.size();
791 IIOAttr attr = (IIOAttr)attributes.get(i);
794 attributes.remove(i);
855 attributes
[all...]
/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanServer.java48 * manageable: its attributes and operations become remotely
434 public AttributeList getAttributes(ObjectName name, String[] attributes) argument
451 AttributeList attributes)
450 setAttributes(ObjectName name, AttributeList attributes) argument
H A DMBeanServerConnection.java534 * <p>Retrieves the values of several attributes of a named MBean. The MBean
537 * <p>If one or more attributes cannot be retrieved for some reason, they
539 * should check that the list is the same size as the {@code attributes}
544 * succeeded in retrieving all the requested attributes:</p>
550 * System.out.println("All attributes were retrieved successfully");
561 * attributes are retrieved.
562 * @param attributes A list of the attributes to be retrieved.
564 * @return The list of the retrieved attributes.
572 * name in parameter is null or attributes i
578 getAttributes(ObjectName name, String[] attributes) argument
671 setAttributes(ObjectName name, AttributeList attributes) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJDocComment.java140 public Map<String,String> addXdoclet(String name, Map<String,String> attributes) { argument
144 p.putAll(attributes);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTargetType.java171 TargetType(int targetTypeValue, TargetAttribute... attributes) { argument
177 for (TargetAttribute attr : attributes)
/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DPKCS10.java52 * of the subject's X.500 name, public key, and optionally some attributes,
70 * attributes [0] IMPLICIT Attributes
100 * @param attributes additonal set of PKCS10 attributes requested
103 public PKCS10(PublicKey publicKey, PKCS10Attributes attributes) { argument
105 attributeSet = attributes;
145 // Inner sequence: version, name, key, attributes
255 * Returns the additional attributes requested.
307 + " attributes: " + attributeSet.toString()
/openjdk7/jdk/test/javax/management/MustBeValidMBeanInfo/
H A DMustBeValidCommand.java45 private static String[][] attributes = { field in class:MustBeValidCommand
183 final MBeanAttributeInfo[] atts = makeAttInfos(attributes);
/openjdk7/jdk/test/javax/management/modelmbean/
H A DAddAttributeChangeNotificationListenerTest.java30 * no other attributes.
177 ModelMBeanAttributeInfo[] attributes = null;
188 attributes,
/openjdk7/jdk/test/javax/management/monitor/
H A DStartStopTest.java99 String[] attributes = { "Integer", "Double", "String" };
136 monitor[i].setObservedAttribute(attributes[monitorType-1]);
H A DThreadPoolAccTest.java90 String[] attributes = { "Integer", "Double", "String" };
129 monitor[i].setObservedAttribute(attributes[i % 3]);
H A DThreadPoolTest.java107 String[] attributes = { "Integer", "Double", "String" };
144 monitor[i].setObservedAttribute(attributes[monitorType-1]);
/openjdk7/jaxp/src/org/xml/sax/helpers/
H A DDefaultHandler.java288 * @param attributes The attributes attached to the element. If
289 * there are no attributes, it shall be an empty
296 String qName, Attributes attributes)
295 startElement(String uri, String localName, String qName, Attributes attributes) argument

Completed in 97 milliseconds

1234567891011>>