Searched refs:descriptor (Results 1 - 25 of 53) sorted by relevance

123

/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanFeatureInfo.java35 * <p>Provides general information for an MBean descriptor object.
71 private transient Descriptor descriptor; field in class:MBeanFeatureInfo
91 * @param descriptor The descriptor for the feature. This may be null
92 * which is equivalent to an empty descriptor.
97 Descriptor descriptor) {
100 this.descriptor = descriptor;
122 * Returns the descriptor for the feature. Changing the returned value
123 * will have no affect on the original descriptor
96 MBeanFeatureInfo(String name, String description, Descriptor descriptor) argument
[all...]
H A DMBeanInfo.java89 * <li>{@link #getDescriptor()} returns a descriptor containing the contents
90 * of any descriptor annotations in the MBean interface (see
115 private transient Descriptor descriptor; field in class:MBeanInfo
218 * @param descriptor The descriptor for the MBean. This may be null
219 * which is equivalent to an empty descriptor.
229 Descriptor descriptor)
252 if (descriptor == null)
253 descriptor = ImmutableDescriptor.EMPTY_DESCRIPTOR;
254 this.descriptor
223 MBeanInfo(String className, String description, MBeanAttributeInfo[] attributes, MBeanConstructorInfo[] constructors, MBeanOperationInfo[] operations, MBeanNotificationInfo[] notifications, Descriptor descriptor) argument
[all...]
H A DMBeanNotificationInfo.java100 * @param descriptor The descriptor for the notifications. This may be null
101 * which is equivalent to an empty descriptor.
108 Descriptor descriptor) {
109 super(name, description, descriptor);
170 "descriptor=" + getDescriptor() +
105 MBeanNotificationInfo(String[] notifTypes, String name, String description, Descriptor descriptor) argument
H A DMBeanParameterInfo.java69 * @param descriptor The descriptor for the operation. This may be null
70 * which is equivalent to an empty descriptor.
77 Descriptor descriptor) {
78 super(name, description, descriptor);
118 "descriptor=" + getDescriptor() +
74 MBeanParameterInfo(String name, String type, String description, Descriptor descriptor) argument
H A DMBeanConstructorInfo.java96 * @param descriptor The descriptor for the constructor. This may be null
97 * which is equivalent to an empty descriptor.
104 Descriptor descriptor) {
105 super(name, description, descriptor);
170 "descriptor=" + getDescriptor() +
204 the descriptor. */
101 MBeanConstructorInfo(String name, String description, MBeanParameterInfo[] signature, Descriptor descriptor) argument
/openjdk7/jdk/src/share/classes/sun/awt/im/
H A DInputMethodLocator.java38 private InputMethodDescriptor descriptor; field in class:InputMethodLocator
41 // descriptor. `loader' is provided for future extensions to be
48 InputMethodLocator(InputMethodDescriptor descriptor, ClassLoader loader, Locale locale) { argument
49 if (descriptor == null) {
50 throw new NullPointerException("descriptor can't be null");
52 this.descriptor = descriptor;
66 if (!descriptor.getClass().equals(otherLocator.descriptor.getClass())) {
81 int result = descriptor
[all...]
H A DInputMethodPopupMenu.java84 InputMethodDescriptor descriptor = locator.getDescriptor();
85 String label = descriptor.getInputMethodDisplayName(null, Locale.getDefault());
90 locales = descriptor.getAvailableLocales();
102 if (descriptor.hasDynamicLocaleList()) {
106 label = descriptor.getInputMethodDisplayName(locales[0], Locale.getDefault());
H A DInputMethodManager.java85 * When more than one input method descriptor can be found or the only input
86 * method descriptor found supports multiple locales, a menu item
272 private static final String descriptorKey = "descriptor";
290 // if we can't get a descriptor, we'll just have to do without native input methods
435 for (InputMethodDescriptor descriptor :
437 ClassLoader cl = descriptor.getClass().getClassLoader();
438 javaInputMethodLocatorList.add(new InputMethodLocator(descriptor, cl, null));
639 InputMethodDescriptor descriptor = locator.getDescriptor();
640 if (descriptor.getClass().getName().equals(descriptorName)) {
665 // look for the descriptor
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DDescriptorCache.java49 public ImmutableDescriptor get(ImmutableDescriptor descriptor) { argument
50 WeakReference<ImmutableDescriptor> wr = map.get(descriptor);
54 map.put(descriptor, new WeakReference<ImmutableDescriptor>(descriptor));
55 return descriptor;
H A DMXBeanIntrospector.java162 Descriptor descriptor = typeDescriptor(openType, originalType);
164 descriptor = ImmutableDescriptor.union(descriptor,
168 descriptor = ImmutableDescriptor.union(descriptor,
180 descriptor);
188 descriptor);
222 Descriptor descriptor =
224 descriptor = ImmutableDescriptor.union(descriptor,
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DField.java40 descriptor = new Descriptor(cr);
45 int name_index, Descriptor descriptor,
49 this.descriptor = descriptor;
63 public final Descriptor descriptor; field in class:Field
44 Field(AccessFlags access_flags, int name_index, Descriptor descriptor, Attributes attributes) argument
H A DMethod.java40 descriptor = new Descriptor(cr);
45 int name_index, Descriptor descriptor,
49 this.descriptor = descriptor;
63 public final Descriptor descriptor; field in class:Method
44 Method(AccessFlags access_flags, int name_index, Descriptor descriptor, Attributes attributes) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/
H A DWSDLPartImpl.java43 private final WSDLPartDescriptor descriptor; field in class:WSDLPartImpl
45 public WSDLPartImpl(XMLStreamReader xsr, String partName, int index, WSDLPartDescriptor descriptor) { argument
50 this.descriptor = descriptor;
80 return descriptor;
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DOpenMBeanParameterInfoSupport.java118 * and {@code descriptor}.</p>
120 * <p>The {@code descriptor} can contain entries that will define
131 * @param descriptor The descriptor for the parameter. This may be null
132 * which is equivalent to an empty descriptor.
136 * null, or the descriptor entries are invalid as described in the
145 Descriptor descriptor) {
153 ImmutableDescriptor.union(descriptor,(openType==null)?null:
160 descriptor = getDescriptor(); // replace null by empty
161 this.defaultValue = valueFrom(descriptor, "defaultValu
142 OpenMBeanParameterInfoSupport(String name, String description, OpenType<?> openType, Descriptor descriptor) argument
[all...]
H A DOpenType.java148 private transient Descriptor descriptor; field in class:OpenType
279 if (descriptor == null) {
280 descriptor = new ImmutableDescriptor(new String[] {"openType"},
283 return descriptor;
H A DOpenMBeanConstructorInfoSupport.java91 * {@code signature}, and {@code descriptor}.</p>
104 * @param descriptor The descriptor for the constructor. This may
105 * be null which is equivalent to an empty descriptor.
118 Descriptor descriptor) {
122 descriptor);
271 * string representation of its descriptor.</p>
293 .append(",descriptor=")
115 OpenMBeanConstructorInfoSupport(String name, String description, OpenMBeanParameterInfo[] signature, Descriptor descriptor) argument
/openjdk7/jdk/test/javax/management/openmbean/
H A DBadConstraintTest.java91 Descriptor d = descriptor(test[1]);
94 "; descriptor=" + d);
130 descriptor("defaultValue", defaultValue));
132 descriptor("defaultValue", string(defaultValue)));
154 descriptor("defaultValue", defaultValue,
158 descriptor("defaultValue", string(defaultValue),
182 descriptor("defaultValue", defaultValue,
185 descriptor("defaultValue", defaultValue,
191 descriptor("defaultValue", defaultValue,
194 descriptor("defaultValu
257 private static Descriptor descriptor(Object... entries) { method in class:BadConstraintTest
[all...]
/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DInject.java262 c.copy(6); // access, name, descriptor
291 c.copyU2(); // descriptor
310 int descriptorIndex = c.copyU2(); // descriptor index
326 c.writeU2(descriptorIndex); // descriptor is the same
339 String descriptor = c.constantPoolString(descriptorIndex);
340 createWrapperCodeAttr(nameIndex, accessFlags, descriptor, wrappedIndex);
486 int nextDescriptorIndex(String descriptor, int index) { argument
487 switch (descriptor.charAt(index)) {
499 while (descriptor.charAt(i) != ';') {
504 return nextDescriptorIndex(descriptor, inde
525 computeMaxLocals(String descriptor, int accessFlags) argument
557 createWrapperCodeAttr(int methodNameIndex, int accessFlags, String descriptor, int wrappedIndex) argument
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaButtonExtendedTypes.java98 void patchUp(final SizeDescriptor descriptor) {} argument
164 void patchUp(final SizeDescriptor descriptor) { descriptor.small.alterMargins(0, 0, 0, -4); descriptor.mini.alterMargins(0, 0, 0, -6); }
168 void patchUp(final SizeDescriptor descriptor) { border.painter.state.set(IndicatorOnly.YES); }
173 void patchUp(SizeDescriptor descriptor) { descriptor.small.alterMargins(0, 0, 0, 0); }
/openjdk7/langtools/test/tools/javac/generics/
H A DOverrideBridge.java150 mRef.descriptor.getReturnType(cRef.constant_pool).equals(
151 mToCheck.descriptor.getReturnType(cToCheck.constant_pool)) &&
152 mRef.descriptor.getParameterTypes(cRef.constant_pool).equals(
153 mToCheck.descriptor.getParameterTypes(cToCheck.constant_pool))) {
159 throw new AssertionError("Matching method descriptor for " + mRef.descriptor.getParameterTypes(cRef.constant_pool) + "not found");
/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DModelMBeanAttributeInfo.java55 * <P id="descriptor">
56 * The fields in the descriptor are defined, but not limited to, the following.
73 * <td>Name of operation descriptor for get method.</td></tr>
75 * <td>Name of operation descriptor for set method.</td></tr>
98 * <p>The default descriptor contains the name, descriptorType and displayName
181 * descriptor. The {@link Descriptor} of the constructed
214 // create default descriptor
231 * @param descriptor An instance of Descriptor containing the
233 * it is null, then a default descriptor will be created. If
234 * the descriptor doe
245 ModelMBeanAttributeInfo(String name, String description, Method getter, Method setter, Descriptor descriptor) argument
315 ModelMBeanAttributeInfo(String name, String type, String description, boolean isReadable, boolean isWritable, boolean isIs, Descriptor descriptor) argument
[all...]
H A DModelMBeanConstructorInfo.java56 * <P id="descriptor">
57 * The fields in the descriptor are defined, but not limited to, the following.
80 * <p>The default descriptor will have the {@code name}, {@code
154 * descriptor. The {@link Descriptor} of the constructed
176 // create default descriptor
190 * @param descriptor An instance of Descriptor containing the
193 * descriptor will be created. If the descriptor does not
195 * descriptor with its default value.
198 * IllegalArgumentException. The descriptor i
205 ModelMBeanConstructorInfo(String description, Constructor<?> constructorMethod, Descriptor descriptor) argument
262 ModelMBeanConstructorInfo(String name, String description, MBeanParameterInfo[] signature, Descriptor descriptor) argument
[all...]
H A DModelMBeanOperationInfo.java57 * <P id="descriptor">
58 * The fields in the descriptor are defined, but not limited to, the following.
91 * <p>The default descriptor will have name, descriptorType, displayName and
140 * @serialField operationDescriptor Descriptor The descriptor
165 * @serial The descriptor containing the appropriate metadata for this instance
173 * descriptor. The {@link Descriptor} of the constructed
187 // create default descriptor
207 * @param descriptor An instance of Descriptor containing the
210 * descriptor will be created. If the descriptor doe
225 ModelMBeanOperationInfo(String description, Method operationMethod, Descriptor descriptor) argument
297 ModelMBeanOperationInfo(String name, String description, MBeanParameterInfo[] signature, String type, int impact, Descriptor descriptor) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DProxyGenerator.java557 * object passed for a given name and descriptor identifies the
701 public String descriptor; field in class:ProxyGenerator.FieldInfo
703 public FieldInfo(String name, String descriptor, int accessFlags) { argument
705 this.descriptor = descriptor;
713 cp.getUtf8(descriptor);
726 out.writeShort(cp.getUtf8(descriptor));
761 public String descriptor; field in class:ProxyGenerator.MethodInfo
769 public MethodInfo(String name, String descriptor, int accessFlags) { argument
771 this.descriptor
1755 getFieldRef(String className, String name, String descriptor) argument
1767 getMethodRef(String className, String name, String descriptor) argument
1779 getInterfaceMethodRef(String className, String name, String descriptor) argument
1791 getNameAndType(String name, String descriptor) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPackage.java492 DescriptorEntry descriptor; field in class:Package.Class.Member
494 protected Member(int flags, DescriptorEntry descriptor) { argument
496 this.descriptor = descriptor;
502 return descriptor;
505 return descriptor.nameRef.stringValue();
508 return descriptor.typeRef.stringValue();
516 // Careful: The descriptor is used by the package,
519 refs.add(descriptor.nameRef);
520 refs.add(descriptor
538 Field(int flags, DescriptorEntry descriptor) argument
563 Method(int flags, DescriptorEntry descriptor) argument
[all...]

Completed in 63 milliseconds

123