Searched defs:descriptors (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DDescriptorCache.java58 public ImmutableDescriptor union(Descriptor... descriptors) { argument
59 return get(ImmutableDescriptor.union(descriptors));
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/coders/
H A DPrimitiveCoderDescriptor.java47 static Map<Character, PrimitiveCoderDescriptor> descriptors = new HashMap<Character, PrimitiveCoderDescriptor>(); field in class:PrimitiveCoderDescriptor
54 final PrimitiveCoderDescriptor desc = descriptors.get(c);
57 descriptors.put(c, newDesc);
/openjdk7/jdk/test/javax/management/modelmbean/ModelMBeanInfoSupport/
H A DGetAllDescriptorsTest.java244 /* Check that all descriptors have been returned */
246 Descriptor[] descriptors, String string) {
249 new ArrayList<Descriptor>(descriptors.length);
250 list.addAll(Arrays.asList(descriptors));
251 System.out.println("Got " + list.size() + " descriptors for "+string);
261 // checks that MBean's attributes descriptors are returned.
274 // checks that MBean's operations descriptors are returned.
287 // checks that MBean's notifications descriptors are returned.
303 // Check that there are no additional descriptors
306 ": Unexpected remaining descriptors
245 checkDescriptors(ModelMBeanInfo modelMBeanInfo, Descriptor[] descriptors, String string) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/
H A DImmutableDescriptor.java197 * the given descriptors. Every field name that appears in any of
198 * the descriptors will appear in the result with the
200 * to any of the descriptors do not affect the ImmutableDescriptor
212 * @param descriptors the descriptors to be combined. Any of the
213 * descriptors can be null, in which case it is skipped.
216 * descriptors. The returned object may be identical to one of the
217 * input descriptors if it is an ImmutableDescriptor that contains all of
226 public static ImmutableDescriptor union(Descriptor... descriptors) { argument
229 int index = findNonEmpty(descriptors,
[all...]
H A DStandardMBean.java128 private final static DescriptorCache descriptors = field in class:StandardMBean
762 desc = descriptors.get(desc);
/openjdk7/jdk/src/share/classes/java/beans/
H A DIntrospector.java601 private void addPropertyDescriptors(PropertyDescriptor[] descriptors) { argument
602 if (descriptors != null) {
603 for (PropertyDescriptor descriptor : descriptors) {
610 PropertyDescriptor[] descriptors = info.getPropertyDescriptors();
612 if ((0 <= index) && (index < descriptors.length)) {
613 this.defaultPropertyName = descriptors[index].getName();
615 return descriptors;
620 * lists of Property descriptors.
715 // property descriptors are determined represent the
721 // Merge any classic property descriptors
[all...]
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DSunPKCS11.java435 private final static Map<Integer,List<Descriptor>> descriptors = field in class:SunPKCS11
468 List<Descriptor> list = descriptors.get(key);
471 descriptors.put(key, list);
842 List<Descriptor> ds = descriptors.get(integerMech);

Completed in 85 milliseconds