Searched refs:properties (Results 1 - 25 of 226) sorted by relevance

12345678910

/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/message/stream/
H A DStreamBasedMessage.java38 * The properties of the message.
40 public final Packet properties; field in class:StreamBasedMessage
51 * @param properties
52 * the properties of the message.
55 protected StreamBasedMessage(Packet properties) { argument
56 this.properties = properties;
63 * @param properties
64 * the properties of the message.
69 protected StreamBasedMessage(Packet properties, AttachmentSe argument
[all...]
H A DXMLStreamReaderMessage.java45 * @param properties
46 * the properties of the message.
52 public XMLStreamReaderMessage(Packet properties, XMLStreamReader msg) { argument
53 super(properties);
60 * @param properties
61 * the properties of the message.
70 public XMLStreamReaderMessage(Packet properties, AttachmentSet attachments, XMLStreamReader msg) { argument
71 super(properties, attachments);
H A DInputStreamMessage.java50 * @param properties
51 * the properties of the message.
60 public InputStreamMessage(Packet properties, String contentType, InputStream msg) { argument
61 super(properties);
70 * @param properties
71 * the properties of the message.
83 public InputStreamMessage(Packet properties, AttachmentSet attachments, argument
85 super(properties, attachments);
/openjdk10/jdk/test/java/awt/image/BufferedImage/
H A DGetPropertyNames.java44 // for null properties result is null
49 // for empty properties result is null
55 final Properties properties = new Properties();
56 properties.put(1, 1);
57 properties.put(2, 2);
58 properties.put(3, 3);
59 final BufferedImage nonStringProps = getBufferedImage(properties);
64 properties.clear();
65 properties.setProperty("1", "1");
66 properties
84 getBufferedImage(final Properties properties) argument
[all...]
/openjdk10/jdk/make/copy/
H A DCopy-java.logging.gmk32 $(CONF_DST_DIR)/logging.properties: $(LOGGING_LIB_SRC)/logging.properties
35 TARGETS := $(CONF_DST_DIR)/logging.properties
/openjdk10/jdk/src/java.desktop/share/classes/javax/sound/midi/
H A DMidiFileFormat.java36 * A {@code MidiFileFormat} object can include a set of properties. A property
41 * required to provide or recognize properties.
43 * The following table lists some common properties that should be used in
121 * The set of properties.
123 private HashMap<String, Object> properties; field in class:MidiFileFormat
150 this.properties = null;
154 * Construct a {@code MidiFileFormat} with a set of properties.
164 * @param properties a {@code Map<String,Object>} object with properties
175 long microseconds, Map<String, Object> properties) {
173 MidiFileFormat(int type, float divisionType, int resolution, int bytes, long microseconds, Map<String, Object> properties) argument
252 public Map<String,Object> properties() { method in class:MidiFileFormat
[all...]
/openjdk10/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/processor/model/
H A DAbstractType.java99 if (properties == null) {
102 return properties.get(key);
111 if (properties == null) {
112 properties = new HashMap();
114 properties.put(key, value);
118 if (properties != null) {
119 properties.remove(key);
124 if (properties == null) {
127 return properties.keySet().iterator();
133 return properties;
144 private Map properties; field in class:AbstractType
[all...]
/openjdk10/jaxws/src/java.xml.bind/share/classes/javax/xml/bind/
H A DJAXBContextFactory.java52 * @param properties
53 * provider-specific properties. Can be null, which means the same thing as passing
78 Map<String, ?> properties ) throws JAXBException;
88 * The interpretation of properties is up to implementations. Implementations must
89 * throw {@code JAXBException} if it finds properties that it doesn't understand.
97 * @param properties
98 * provider-specific properties. Can be null, which means the same thing as passing
116 Map<String, ?> properties ) throws JAXBException;
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/jimage/decompressor/
H A DStringSharingDecompressorFactory.java48 public ResourceDecompressor newDecompressor(Properties properties) argument
50 return new StringSharingDecompressor(properties);
/openjdk10/jdk/test/sun/management/LoggingTest/
H A DLoggingWithJULTest.java46 String properties = Paths.get(System.getProperty("test.src", "src"),
47 "logging.properties").toString();
48 System.setProperty("java.util.logging.config.file", properties);
/openjdk10/jaxp/test/javax/xml/jaxp/functional/javax/xml/transform/ptests/
H A DTransformerTest03.java47 * Here Properties Object is populated with required properties.A transformer
74 Properties properties = new Properties();
75 properties.put("method", "xml");
76 properties.put("encoding", "UTF-8");
77 properties.put("omit-xml-declaration", "yes");
78 properties.put("{http://xml.apache.org/xslt}indent-amount", "0");
79 properties.put("indent", "no");
80 properties.put("standalone", "no");
81 properties.put("version", "1.0");
82 properties
[all...]
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DAbstractFilter.java38 private Properties properties; field in class:AbstractFilter
42 properties = new Properties();
47 return properties;
/openjdk10/hotspot/test/compiler/testlibrary/uncommontrap/
H A DVerifier.java43 public static final String PROPERTIES_FILE_SUFFIX = ".verify.properties";
81 Properties properties = new Properties();
83 properties.load(reader);
86 if (Boolean.valueOf(properties.getProperty(
96 verifyUncommonTrapEmitted(properties, compLogContent);
97 verifyUncommonTrapFired(properties, compLogContent);
100 private static void verifyUncommonTrapEmitted(Properties properties, argument
103 properties.getProperty(UNCOMMON_TRAP_BCI, ".*"),
104 properties.getProperty(UNCOMMON_TRAP_NAME, ".*"),
105 properties
122 verifyUncommonTrapFired(Properties properties, List<String> compLogContent) argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/sun/net/www/
H A DURLConnection.java44 protected MessageHeader properties; field in class:URLConnection
53 properties = new MessageHeader();
60 return properties;
64 public void setProperties(MessageHeader properties) { argument
65 this.properties = properties;
73 properties.set(key, value);
106 return properties == null ? null : properties.findValue(name);
120 MessageHeader props = properties;
[all...]
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/dtd/bindinfo/
H A DBIConstructor.java56 DOMUtil.getAttribute(_node,"properties"));
61 properties = vec.toArray(new String[0]);
63 if( properties.length==0 )
70 /** properties specified by @properties. */
71 private final String[] properties; field in class:BIConstructor
81 cls.addConstructor(properties);
/openjdk10/langtools/make/gensrc/
H A DGensrc-jdk.javadoc.gmk29 com/sun/tools/javadoc/resources/version.properties))
32 jdk/javadoc/internal/tool/resources/version.properties))
H A DGensrc-jdk.jdeps.gmk29 com/sun/tools/javap/resources/version.properties))
32 com/sun/tools/jdeps/resources/version.properties))
H A DGensrc-jdk.jshell.gmk29 jdk/internal/jshell/tool/resources/version.properties))
H A DGensrc-jdk.compiler.gmk29 com/sun/tools/javac/resources/version.properties))
32 com/sun/tools/javah/resources/version.properties))
38 com/sun/tools/javac/resources/compiler.properties))
/openjdk10/jdk/src/java.desktop/share/classes/javax/sound/sampled/
H A DAudioFileFormat.java43 * An {@code AudioFileFormat} object can include a set of properties. A property
48 * implementations are not required to provide or recognize properties.
50 * The following table lists some common properties that should be used in
114 * The set of properties.
116 private HashMap<String, Object> properties; field in class:AudioFileFormat
137 this.properties = null;
142 * used by applications to describe the properties of a requested audio
157 * Construct an audio file format object with a set of defined properties.
159 * properties of a requested audio file. The properties ma
169 AudioFileFormat(Type type, AudioFormat format, int frameLength, Map<String, Object> properties) argument
230 public Map<String, Object> properties() { method in class:AudioFileFormat
[all...]
/openjdk10/jdk/src/java.xml.crypto/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMSignatureProperties.java52 private final List<SignatureProperty> properties; field in class:DOMSignatureProperties
58 * @param properties a list of one or more {@link SignatureProperty}s. The
61 * @throws ClassCastException if <code>properties</code> contains any
63 * @throws IllegalArgumentException if <code>properties</code> is empty
64 * @throws NullPointerException if <code>properties</code>
66 public DOMSignatureProperties(List<? extends SignatureProperty> properties, argument
69 if (properties == null) {
70 throw new NullPointerException("properties cannot be null");
75 tempList.addAll(properties);
77 throw new IllegalArgumentException("properties canno
[all...]
/openjdk10/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/utils/resolver/
H A DResourceResolverSpi.java42 /** Field properties */
43 protected java.util.Map<String, String> properties = null; field in class:ResourceResolverSpi
93 if (properties == null) {
94 properties = new HashMap<String, String>();
96 properties.put(key, value);
106 if (properties == null) {
109 return properties.get(key);
118 if (properties == null) {
119 properties = new HashMap<String, String>();
121 properties
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/beans/introspect/
H A DClassInfo.java60 private Map<String,PropertyInfo> properties; field in class:ClassInfo
79 if (this.properties == null) {
81 if (this.properties == null) {
82 this.properties = PropertyInfo.get(this.type);
86 return this.properties;
/openjdk10/test/failure_handler/src/share/classes/jdk/test/failurehandler/action/
H A DPatternAction.java40 public PatternAction(String id, Properties properties) argument
42 this(id, id, properties);
45 public PatternAction(String name, String id, Properties properties) argument
47 action = new SimpleAction(("pattern." + name), id, properties);
48 ValueHandler.apply(this, properties, id);
/openjdk10/test/lib/jdk/test/lib/
H A DBuildHelper.java47 Properties properties = getReleaseProperties();
48 String value = properties.getProperty(key, defaultValue);
61 * Get properties from the release file
64 Properties properties = new Properties();
65 properties.load(new FileReader(getReleaseFile()));
66 return properties;

Completed in 120 milliseconds

12345678910