Searched defs:properties (Results 51 - 61 of 61) sorted by relevance

123

/openjdk7/jdk/src/share/classes/java/awt/image/
H A DBufferedImage.java79 Hashtable properties; field in class:BufferedImage
603 * @param properties <code>Hashtable</code> of
627 Hashtable<?,?> properties) {
645 this.properties = properties;
1109 if (properties == null) {
1110 properties = new Hashtable();
1112 osis = new OffScreenImageSource(this, properties);
1122 * <code>UndefinedProperty</code> field. If the properties
1133 * properties o
624 BufferedImage(ColorModel cm, WritableRaster raster, boolean isRasterPremultiplied, Hashtable<?,?> properties) argument
[all...]
/openjdk7/jdk/src/share/classes/java/beans/
H A DIntrospector.java53 * the properties, events, and methods supported by a target Java Bean.
119 // properties maps from String names to PropertyDescriptors
120 private Map properties; field in class:Introspector
138 * Introspect on a Java Bean and learn about all its properties, exposed
172 * Introspect on a Java bean and learn about all its properties, exposed
198 * Introspect on a Java bean and learn all about its properties, exposed
207 * methods/properties/events in the stopClass or in its baseclasses
218 * Introspect on a Java Bean and learn about all its properties,
230 * Any methods/properties/events in the {@code stopClass}
313 * of system properties
1459 private PropertyDescriptor[] properties; field in class:GenericBeanInfo
1464 GenericBeanInfo(BeanDescriptor beanDescriptor, EventSetDescriptor[] events, int defaultEvent, PropertyDescriptor[] properties, int defaultProperty, MethodDescriptor[] methods, BeanInfo targetBeanInfo) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DVisibleMemberMap.java461 members = properties(cd, filter);
529 private ProgramElementDoc[] properties(final ClassDoc cd, final boolean filter) { method in class:VisibleMemberMap.ClassMembers
650 // properties aren't named setA* or getA*
/openjdk7/jdk/src/share/javavm/export/
H A Djvm.h1305 * Initialize the agent properties with the properties maintained in the VM.
1459 char **properties; member in struct:JDK1_1InitArgs
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DPNGImageDecoder.java71 private java.util.Hashtable properties; field in class:PNGImageDecoder
86 if(properties==null) properties=new java.util.Hashtable();
87 properties.put(key,value);
515 if(properties!=null) t.setProperties(properties);
532 t.setProperties(properties);
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DXmlReaderContentHandler.java50 * A rowset consists of its properties, metadata, and data values. An XML document
58 * followed by their constituent elements. For example, the <code>properties</code>
59 * element will be followed by an element for each of the properties listed in
60 * in this <code>XmlReaderContentHandler</code> object's <code>properties</code>
104 * A list of the properties for a rowset. There is a constant defined to
105 * correspond to each of these properties so that a <code>HashMap</code>
106 * object can be created to map the properties, which are strings, to
109 private String [] properties = {"command", "concurrency", "datasource", field in class:XmlReaderContentHandler
400 * <code>properties</code>.
427 * properties, on
[all...]
/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/
H A DGenerateCharacter.java92 can be thus obtained encode the properties for the character.
107 /* The character properties are currently encoded into A (32 bits)and B (16 bits)
221 // these values are used when only identifier properties are generated
294 * 32 bits to encode relevant character properties.) Entry k holds the encoded
295 * properties for character k.
362 // now add all extra supported properties from PropList, to the
401 * 32 bits to encode relevant character properties.)
407 * @return an encoded long value that contains the properties for a single char
417 // record the numeric properties
915 * needed to represent the various Unicode character properties
1131 genTable(StringBuffer result, String name, long[] table, int extract, int bits, int size, boolean preshifted, int shift, boolean hexFormat, boolean properties, boolean hexComment) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DClassInfoImpl.java112 private FinalArrayList<PropertyInfoImpl<T,C,F,M>> properties; field in class:ClassInfoImpl
289 if(properties!=null) return properties;
294 properties = new FinalArrayList<PropertyInfoImpl<T,C,F,M>>();
303 Collections.sort(properties);
307 for (PropertyInfoImpl p : properties) {
310 Collections.sort(properties,sorter);
318 for (PropertyInfoImpl p : properties) {
327 // can't have multiple value properties.
354 return properties;
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DMessageImpl.java88 protected HashMap properties = new HashMap(); field in class:MessageImpl
225 this.properties = src.properties;
545 return (String) properties.get(property);
550 properties.put(property, value);
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DXMLCipher.java3471 * @param properties
3474 EncryptionProperties properties) {
3475 encryptionProperties = properties;
3473 setEncryptionProperties( EncryptionProperties properties) argument
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.h1462 * Initialize the agent properties with the properties maintained in the VM.
1617 char **properties; member in struct:JDK1_1InitArgs

Completed in 73 milliseconds

123