Searched defs:attributeName (Results 1 - 25 of 36) sorted by relevance

12

/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DModelMBeanNotificationBroadcaster.java136 * attributeName oldValue.getName()
154 * for independently. An AttributeChangeNotification will be generated for this attributeName.
157 * @param attributeName The name of the ModelMBean attribute for which to receive change notifications.
168 String attributeName,
178 * @param attributeName The attribute for which the listener no longer wants to receive attributeChangeNotifications.
190 String attributeName)
167 addAttributeChangeNotificationListener(NotificationListener listener, String attributeName, Object handback) argument
189 removeAttributeChangeNotificationListener(NotificationListener listener, String attributeName) argument
/openjdk7/jdk/src/share/classes/javax/management/
H A DAttributeChangeNotification.java67 private String attributeName = null; field in class:AttributeChangeNotification
94 * @param attributeName A String giving the name of the attribute.
100 String attributeName, String attributeType, Object oldValue, Object newValue) {
103 this.attributeName = attributeName;
116 return attributeName;
99 AttributeChangeNotification(Object source, long sequenceNumber, long timeStamp, String msg, String attributeName, String attributeType, Object oldValue, Object newValue) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/
H A DTypedXmlWriter.java113 * @param attributeName
120 void _attribute( QName attributeName, Object value ); argument
H A DContainerElement.java306 public void _attribute(QName attributeName, Object value) { argument
307 _attribute(attributeName.getNamespaceURI(),attributeName.getLocalPart(),value);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXDataViewer.java132 String attributeName,
140 attributeName,
130 createAttributeViewer(Object value, XMBean mbean, String attributeName, JTable table) argument
H A DXPlottingViewer.java49 private String attributeName; field in class:XPlottingViewer
54 String attributeName,
63 this.attributeName = attributeName;
64 Plotter plotter = createPlotter(mbean, attributeName, key, table);
94 String attributeName,
100 String key = String.valueOf(tab.hashCode()) + " " + String.valueOf(mbean.hashCode()) + " " + mbean.getObjectName().getCanonicalName() + attributeName;
105 attributeName,
127 ((XMBeanAttributes) table).collapse(attributeName, this);
132 final String attributeName,
52 XPlottingViewer(String key, XMBean mbean, String attributeName, Object value, JTable table, MBeansTab tab) argument
93 loadPlotting(XMBean mbean, String attributeName, Object value, JTable table, MBeansTab tab) argument
131 createPlotter(final XMBean xmbean, final String attributeName, String key, JTable table) argument
[all...]
H A DXMBean.java108 public Object getAttribute(String attributeName) argument
112 getObjectName(), attributeName);
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DMBeanAnalyzer.java55 public void visitAttribute(String attributeName, argument
H A DMXBeanProxy.java65 public void visitAttribute(String attributeName, argument
72 new GetHandler(attributeName, getter));
78 new SetHandler(attributeName, setter));
114 GetHandler(String attributeName, ConvertingMethod cm) { argument
115 super(attributeName, cm);
127 SetHandler(String attributeName, ConvertingMethod cm) { argument
128 super(attributeName, cm);
H A DPerInterface.java235 public void visitAttribute(String attributeName, argument
240 final Object old = getters.put(attributeName, getter);
245 final Object old = setters.put(attributeName, setter);
H A DMXBeanIntrospector.java144 MBeanAttributeInfo getMBeanAttributeInfo(String attributeName, argument
151 final String description = attributeName;
174 ai = new OpenMBeanAttributeInfoSupport(attributeName,
182 ai = new MBeanAttributeInfo(attributeName,
H A DStandardMBeanIntrospector.java121 MBeanAttributeInfo getMBeanAttributeInfo(String attributeName, argument
126 return new MBeanAttributeInfo(attributeName, description,
H A DMBeanIntrospector.java154 abstract MBeanAttributeInfo getMBeanAttributeInfo(String attributeName, argument
320 public void visitAttribute(String attributeName, argument
324 getMBeanAttributeInfo(attributeName, getter, setter);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/bindinfo/
H A DBISchemaBinding.java61 NamingRule attributeName = defaultNamingRule; field in class:BISchemaBinding.NameRules
138 return nameXmlTransform.attributeName.mangle(name);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/vocab/
H A DSerializerVocabulary.java55 public final LocalNameQualifiedNamesMap attributeName; field in class:SerializerVocabulary
75 tables[ATTRIBUTE_NAME] = attributeName = new LocalNameQualifiedNamesMap();
129 addToTable(v.attributes.iterator(), attributeName);
H A DParserVocabulary.java88 public final QualifiedNameArray attributeName; field in class:ParserVocabulary
110 attributeName = new QualifiedNameArray(ValueArray.DEFAULT_CAPACITY, IDENTIFYING_STRING_TABLE_MAXIMUM_ITEMS);
123 tables[ATTRIBUTE_NAME] = attributeName;
178 addToTable(v.attributes.iterator(), attributeName, true,
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/
H A DXmlPolicyModelUnmarshaller.java237 final QName attributeName) {
239 Attribute attribute = element.getAttributeByName(attributeName);
243 final String localAttributeName = attributeName.getLocalPart();
248 final boolean attributeFoundByWorkaround = aName.equals(attributeName) || (aName.getLocalPart().equals(localAttributeName) && (aName.getPrefix() == null || "".equals(aName.getPrefix())));
236 getAttributeByName(final StartElement element, final QName attributeName) argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/
H A DUnparsedEntityHandler.java136 public void attributeDecl(String elementName, String attributeName, argument
141 fDTDHandler.attributeDecl(elementName, attributeName,
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DDTDParser.java205 * @param attributeName The name of the attribute.
221 public void attributeDecl(String elementName, String attributeName, argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/
H A DXMLDTDHandler.java218 * @param attributeName The name of the attribute.
238 public void attributeDecl(String elementName, String attributeName, argument
/openjdk7/jdk/src/share/classes/java/beans/
H A DFeatureDescriptor.java190 * @param attributeName The locale-independent name of the attribute
193 public void setValue(String attributeName, Object value) { argument
194 getTable().put(attributeName, value);
200 * @param attributeName The locale-independent name of the attribute
204 public Object getValue(String attributeName) { argument
206 ? this.table.get(attributeName)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/
H A DTDTDReader.java292 public void attributeDecl(String elementName, String attributeName, String attributeType, String[] enumeration, short attributeUse, String defaultValue) throws SAXException { argument
294 createAttribute(elementName, attributeName, attributeType, enumeration, attributeUse, defaultValue)
299 String elementName, String attributeName, String attributeType,
308 if(edecl!=null) decl=edecl.attribute(attributeName);
311 if(decl==null) propName = model.getNameConverter().toPropertyName(attributeName);
314 QName qname = new QName("",attributeName);
298 createAttribute( String elementName, String attributeName, String attributeType, String[] enums, short attributeUse, String defaultValue ) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DDTDHandlerBase.java102 public void attributeDecl(String elementName, String attributeName, String attributeType, argument
H A DDTDEventListener.java310 public void attributeDecl(String elementName, String attributeName, String attributeType, argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DDefaultXMLDocumentHandler.java520 * @param attributeName The name of the attribute.
540 public void attributeDecl(String elementName, String attributeName, argument

Completed in 58 milliseconds

12