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

123

/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DAudioFormat.java50 * In addition to the encoding, the audio format includes other properties that further specify the exact
70 * properties. A property is a pair of key and value: the key
76 * to and from the service providers. Therefore, properties
81 * properties, depending on the respective service provider
84 * <p>The following table lists some common properties which
113 * properties in third party plugins, and follow the same
165 /** The set of properties */
166 private HashMap<String, Object> properties; field in class:AudioFormat
194 this.properties = null;
213 * @param properties
218 AudioFormat(Encoding encoding, float sampleRate, int sampleSizeInBits, int channels, int frameSize, float frameRate, boolean bigEndian, Map<String, Object> properties) argument
398 public Map<String,Object> properties() { method in class:AudioFormat
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DEncryptedType.java192 * @param properties.
194 void setEncryptionProperties(EncryptionProperties properties); argument
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/resolver/
H A DResourceResolver.java309 * @param properties
311 public void addProperties(Map<String, String> properties) { argument
312 resolverSpi.engineAddProperies(properties);
H A DResourceResolverSpi.java88 * @param properties
90 public void engineAddProperies(Map<String,String> properties) { argument
91 if (properties!=null) {
95 this._properties.putAll(properties);
/openjdk7/jaxws/src/share/jaxws_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...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/transform/
H A DEfficientStreamingTransformer.java177 public void setOutputProperties(java.util.Properties properties) argument
181 m_realTransformer.setOutputProperties(properties);
411 * properties or any other data set on a previously used transformer.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/
H A DWSService.java180 * @param properties
185 public static Service create( URL wsdlDocumentLocation, QName serviceName, InitParams properties) { argument
188 INIT_PARAMS.set(properties);
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DURLConnection.java49 protected MessageHeader properties; field in class:URLConnection
58 properties = new MessageHeader();
65 return properties;
69 public void setProperties(MessageHeader properties) { argument
70 this.properties = properties;
78 properties.set(key, value);
111 return properties == null ? null : properties.findValue(name);
125 MessageHeader props = properties;
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/
H A DEndpoint.java421 * @param properties The property bag associated with
424 public abstract void setProperties(Map<String,Object> properties); argument
/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/
H A DXMLSignatureFactory.java584 * @param properties a list of one or more <code>SignatureProperty</code>s.
589 * @throws NullPointerException if <code>properties</code>
591 * @throws IllegalArgumentException if <code>properties</code> is empty
592 * @throws ClassCastException if <code>properties</code> contains any
596 (List properties, String id);
595 newSignatureProperties(List properties, String id) argument
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DToolkitImage.java82 private Hashtable properties; field in class:ToolkitImage
154 * UndefinedProperty object. If the properties for this image are
168 if (properties == null) {
170 if (properties == null) {
174 Object o = properties.get(name);
261 properties = props;
H A DImageRepresentation.java188 Hashtable properties)
185 createImage(ColorModel cm, WritableRaster raster, boolean isRasterPremultiplied, Hashtable properties) argument
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DMemoryImageSource.java114 Hashtable properties; field in class:MemoryImageSource
148 * @param props a list of properties that the <code>ImageProducer</code>
188 * @param props a list of properties that the <code>ImageProducer</code>
210 properties = props;
241 * @param props a list of properties that the <code>ImageProducer</code>
541 ic.setProperties(properties);
/openjdk7/jdk/src/share/classes/java/util/jar/
H A DPack200.java55 * // Initialize the state by setting the desired properties
56 * Map p = packer.properties();
176 * by their properties below.
178 * engine properties (using {@link #properties}) and storing
179 * the modified properties on the map.
246 * of its name and other transmitted properties.
339 * additional properties with distinct strings appended, to
340 * make a family of properties with the common prefix.
354 * Map p = packer.properties();
545 SortedMap<String,String> properties(); method in interface:Pack200.Packer
676 SortedMap<String,String> properties(); method in interface:Pack200.Unpacker
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPackerImpl.java73 public SortedMap properties() { method in class:PackerImpl
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DRepository.java114 private final String properties; field in class:Repository.ObjectNamePattern
151 this.properties = canonicalProps;
175 // pattern, then the number of key properties must be equal
215 final String p2 = properties;
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DProperties.java93 private Properties properties; field in class:Properties.Entity
96 properties = new Properties();
100 properties = new Properties(object.getProperties());
104 return properties;
296 public void add(Properties properties) { argument
297 for (Property p : properties) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DClassBeanInfoImpl.java76 public final Property<BeanT>[] properties; field in class:ClassBeanInfoImpl
162 this.properties = new Property[ps.size()];
169 properties[idx++] = p;
190 Property[] props = bi.properties;
227 for (int i = 0; i < bi.properties.length; i++) {
228 Property p = bi.properties[i];
251 for (Property p : properties)
293 for( Property<BeanT> p : properties )
338 for (Property<BeanT> p : properties) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/
H A DEndpointImpl.java101 private Map<String, Object> properties = Collections.emptyMap(); // always non-null field in class:EndpointImpl
221 return new HashMap<String, Object>(properties);
225 this.properties = new HashMap<String, Object>(map);
263 Object o = properties.get(key);
/openjdk7/jdk/src/share/classes/javax/sql/rowset/spi/
H A DSyncFactory.java113 * the provider to the system properties.
121 * that may be edited by hand. Here is an example of the properties file
180 * for it in the system properties, then it looks in the resource files, and
231 private static String ROWSET_PROPERTIES = "rowset.properties";
344 Properties properties = new Properties();
353 // properties.load(new FileInputStream(ROWSET_PROPERTIES));
355 // The rowset.properties needs to be in jdk/jre/lib when
359 // -Drowset.properties will add to standard properties. Similar
365 String strRowsetProperties = System.getProperty("rowset.properties");
758 enumerateBindings(NamingEnumeration bindings, Properties properties) argument
[all...]
/openjdk7/jdk/src/share/classes/java/sql/
H A DConnection.java1132 * method to determine the client info properties supported by the driver
1153 * The following are standard client info properties. Drivers are not
1154 * required to support these properties however if the driver supports a
1156 * properties, the standard property name should be used.
1184 * Sets the value of the connection's client info properties. The
1186 * properties to be set. The set of client info properties contained in
1187 * the properties list replaces the current set of client info properties
1189 * connection is not present in the properties lis
1213 setClientInfo(Properties properties) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DCClassInfo.java103 private final List<CPropertyInfo> properties = new ArrayList<CPropertyInfo>(); field in class:CClassInfo
267 return properties;
279 for( CPropertyInfo p : properties )
369 properties.add(prop);
/openjdk7/jdk/src/share/demo/jfc/Notepad/
H A DNotepad.java65 protected static Properties properties; field in class:Notepad
78 properties = new Properties();
79 properties.load(Notepad.class.getResourceAsStream(
80 "resources/NotepadSystem.properties"));
84 System.err.println("resources/Notepad.properties "
85 + "or resources/NotepadSystem.properties not found");
256 return properties.getProperty(key);
/openjdk7/jdk/src/share/classes/sun/management/jmxremote/
H A DConnectorBootstrap.java88 * Default values for JMX configuration properties.
93 public static final String CONFIG_FILE_NAME = "management.properties";
104 * Names of JMX configuration properties.
213 properties = propertiesFromFile(accessFile);
234 if (properties.containsKey(p.getName())) {
261 private final Properties properties; field in class:ConnectorBootstrap.AccessFileCheckerAuthenticator
295 // Load a new management properties
473 // properties to the instrumentation buffer.
474 Map<String, String> properties = new HashMap<String, String>();
475 properties
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DTransformerImpl.java108 "http://xml.org/sax/properties/lexical-handler";
149 * Output properties of this transformer instance.
334 // Pass output properties to the translet
348 // Pass output properties to handler if identity
851 * Returns a copy of the output properties for the transformation. This is
852 * a set of layered properties. The first layer contains properties set by
885 * Set the output properties for the transformation. These properties
886 * will override properties se
892 setOutputProperties(Properties properties) argument
1195 isDefaultProperty(String name, Properties properties) argument
[all...]

Completed in 71 milliseconds

123