Searched defs:descriptor (Results 1 - 25 of 35) sorted by relevance

12

/openjdk7/jdk/src/share/classes/javax/management/
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
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 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 DMBeanAttributeInfo.java128 * @param descriptor The descriptor for the attribute. This may be null
129 * which is equivalent to an empty descriptor.
145 Descriptor descriptor) {
146 super(name, description, descriptor);
267 "descriptor=" + getDescriptor() +
139 MBeanAttributeInfo(String name, String type, String description, boolean isReadable, boolean isWritable, boolean isIs, Descriptor descriptor) argument
H A DMBeanOperationInfo.java148 * @param descriptor The descriptor for the operation. This may be null
149 * which is equivalent to an empty descriptor.
158 Descriptor descriptor) {
160 super(name, description, descriptor);
273 "descriptor=" + getDescriptor() +
153 MBeanOperationInfo(String name, String description, MBeanParameterInfo[] signature, String type, int impact, Descriptor descriptor) argument
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...]
/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;
/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/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...]
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
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
H A DOpenMBeanInfoSupport.java128 * notifications}, and {@code descriptor}.</p>
162 * @param descriptor The descriptor for the MBean. This may be null
163 * which is equivalent to an empty descriptor.
179 Descriptor descriptor) {
186 descriptor);
372 * described MBean and the string representation of the descriptor.</p>
400 .append(",descriptor=")
173 OpenMBeanInfoSupport(String className, String description, OpenMBeanAttributeInfo[] openAttributes, OpenMBeanConstructorInfo[] openConstructors, OpenMBeanOperationInfo[] openOperations, MBeanNotificationInfo[] notifications, Descriptor descriptor) argument
H A DOpenMBeanOperationInfoSupport.java113 * impact}, and {@code descriptor}.</p>
132 * @param descriptor The descriptor for the operation. This may
133 * be null, which is equivalent to an empty descriptor.
150 Descriptor descriptor) {
158 ImmutableDescriptor.union(descriptor,
371 * described operation and the string representation of its descriptor.</p>
397 .append(",descriptor=")
145 OpenMBeanOperationInfoSupport(String name, String description, OpenMBeanParameterInfo[] signature, OpenType<?> returnOpenType, int impact, Descriptor descriptor) argument
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 DOpenMBeanAttributeInfoSupport.java139 * <p>The {@code descriptor} can contain entries that will define
159 * @param descriptor The descriptor for the attribute. This may be null
160 * which is equivalent to an empty descriptor.
164 * null, or the descriptor entries are invalid as described in the
176 Descriptor descriptor) {
185 ImmutableDescriptor.union(descriptor, (openType==null)?null:
192 descriptor = getDescriptor(); // replace null by empty
193 this.defaultValue = valueFrom(descriptor, "defaultValue", openType);
194 this.legalValues = valuesFrom(descriptor, "legalValue
170 OpenMBeanAttributeInfoSupport(String name, String description, OpenType<?> openType, boolean isReadable, boolean isWritable, boolean isIs, Descriptor descriptor) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DModelMBeanNotificationInfo.java54 * <P id="descriptor">
55 * The fields in the descriptor are defined, but not limited to, the following.
84 * <p>The default descriptor contains the name, descriptorType,
128 * @serialField notificationDescriptor Descriptor The descriptor
153 * @serial The descriptor containing the appropriate metadata for
162 * descriptor.
184 * @param descriptor An instance of Descriptor containing the
186 * MBeanNotificationInfo. If it is null a default descriptor
187 * will be created. If the descriptor does not contain the
192 * {@link IllegalArgumentException}. The descriptor i
197 ModelMBeanNotificationInfo(String[] notifTypes, String name, String description, Descriptor descriptor) argument
[all...]
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/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/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/jdk/src/share/classes/java/beans/
H A DEventSetDescriptor.java531 private static Method getMethod(MethodDescriptor descriptor) { argument
532 return (descriptor != null)
533 ? descriptor.getMethod()
/openjdk7/jdk/test/java/util/jar/
H A DTestExtra.java165 /** Look up descriptor in data, returning corresponding byte[]. */
166 static byte[] getField(int descriptor, byte[] data) { argument
171 if (get16(data, i) == descriptor) {
182 // descriptor not found

Completed in 149 milliseconds

12