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

123

/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Util/src/com/sun/hotspot/igv/util/
H A DPropertiesSheet.java39 public static void initializeSheet(final Properties properties, Sheet s) { argument
43 for (final Property p : properties) {
63 properties.setProperty(p.getName(), arg0);
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DCommandLineParser.java80 * storing them in the properties map in a canonicalized form.
82 public String parse(List<String> args, Map<String, String> properties) { argument
83 //System.out.println(args+" // "+properties);
192 properties.remove(negopt);
193 properties.put(negopt, null); // leave placeholder
202 String old = properties.get(opt);
210 properties.put(opt, boolval);
229 String old = properties.get(opt);
239 properties.put(opt, strval);
281 //System.out.println(args+" // "+properties
[all...]
/openjdk7/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();
46 return properties;
/openjdk7/jaxws/src/share/jaxws_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);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/stream/
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);
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);
/openjdk7/jdk/src/share/classes/sun/management/
H A DConnectorAddressLink.java53 * The format of the jvmstat counters representing the properties of
133 * configuration properties to the instrumentation buffer so that
137 * @param properties The remote connector address properties.
139 public static void exportRemote(Map<String, String> properties) { argument
142 for (Map.Entry<String, String> entry : properties.entrySet()) {
150 * configuration properties from the instrument buffer
156 * @return a map containing the remote connector's properties, or an empty
157 * map if the target VM has not exported the remote connector's properties.
171 Map<String, String> properties
[all...]
/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DMidiFileFormat.java40 * include a set of properties. A property is a pair of key and value:
47 * recognize properties.
49 * <p>The following table lists some common properties that should
135 /** The set of properties */
136 private HashMap<String, Object> properties; field in class:MidiFileFormat
161 this.properties = null;
166 * Construct a <code>MidiFileFormat</code> with a set of properties.
176 * @param properties a <code>Map&lt;String,Object&gt;</code> object
177 * with properties
189 long microseconds, Map<String, Object> properties) {
187 MidiFileFormat(int type, float divisionType, int resolution, int bytes, long microseconds, Map<String, Object> properties) argument
268 public Map<String,Object> properties() { method in class:MidiFileFormat
[all...]
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMSignatureProperties.java49 private final List properties; field in class:DOMSignatureProperties
55 * @param properties a list of one or more {@link SignatureProperty}s. The
59 * @throws ClassCastException if <code>properties</code> contains any
61 * @throws IllegalArgumentException if <code>properties</code> is empty
62 * @throws NullPointerException if <code>properties</code>
64 public DOMSignatureProperties(List properties, String id) { argument
65 if (properties == null) {
66 throw new NullPointerException("properties cannot be null");
67 } else if (properties.isEmpty()) {
68 throw new IllegalArgumentException("properties canno
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DOffScreenImageSource.java43 Hashtable properties; field in class:OffScreenImageSource
46 Hashtable properties) {
48 if (properties != null) {
49 this.properties = properties;
51 this.properties = new Hashtable();
186 theConsumer.setProperties(properties);
45 OffScreenImageSource(BufferedImage image, Hashtable properties) argument
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DClientPropertyApplicator.java34 private final Map<String, Property<N>> properties = new HashMap<String, Property<N>>(); field in class:ClientPropertyApplicator
38 properties.put(p.name, p);
43 final Property<N> property = properties.get(propName);
56 final Set<String> propNames = properties.keySet();
/openjdk7/corba/make/tools/src/build/tools/stripproperties/
H A DStripProperties.java43 * Reads a properties file from standard input and writes an equivalent
44 * properties file without comments to standard output.
165 * Strip the properties filenames supplied, replacing their contents.
166 * @param args Names of properties files to process and replace contents
237 * Writes the content of <code>properties</code> to <code>out</code>.
245 private static void storeProperties(Properties properties, OutputStream out) argument
249 for (Enumeration e = properties.keys(); e.hasMoreElements();) {
251 String val = (String)properties.get(key);
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DArguments.java75 * @param properties Environment-style properties collected from the
79 protected void parseOtherArgs (String[] args, Properties properties) throws InvalidArgument argument
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DAudioFileFormat.java47 * include a set of properties. A property is a pair of key and value:
54 * recognize properties.
56 * <p>The following table lists some common properties that should
131 /** The set of properties */
132 private HashMap<String, Object> properties; field in class:AudioFileFormat
153 this.properties = null;
160 * properties of a requested audio file.
173 * defined properties.
175 * properties of a requested audio file. The properties ma
187 AudioFileFormat(Type type, AudioFormat format, int frameLength, Map<String, Object> properties) argument
246 public Map<String,Object> properties() { method in class:AudioFileFormat
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DDriver.java88 // Collect engine properties here:
102 // Collect argument properties here:
107 // Translate command line options to Pack200 properties:
182 // Deal with remaining non-engine properties:
269 jpack.properties().putAll(engProps);
270 junpack.properties().putAll(engProps);
522 Map<String,String> properties) {
523 //System.out.println(args+" // "+properties);
639 properties.remove(negopt);
640 properties
520 parseCommandOptions(List<String> args, String options, Map<String,String> properties) argument
[all...]
H A DUnpackerImpl.java85 public SortedMap properties() { method in class:UnpackerImpl
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DJDK13Services.java63 /** Filename of the properties file for default provider properties.
67 private static final String PROPERTIES_FILENAME = "sound.properties";
81 /** Properties loaded from the properties file for default provider
82 properties.
84 private static Properties properties; field in class:JDK13Services
211 /** Obtain a properties bundle containing property values from the
212 properties file. If the properties file could not be loaded,
213 the properties bundl
[all...]
H A DJSSecurityManager.java94 if(Printer.debug) Printer.debug("not using JDK 1.2 security to get properties");
98 if(Printer.debug) Printer.debug("not using JDK 1.2 security to get properties");
105 /** Load properties from a file.
106 This method tries to load properties from the filename give into
107 the passed properties object.
110 @param properties The properties bundle to store the values of the
111 properties file.
112 @param filename The filename of the properties file to load. This
116 static void loadProperties(final Properties properties, argument
141 loadPropertiesImpl(Properties properties, String filename) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/resolver/implementations/
H A DResolverDirectHTTP.java44 * switched on by setting properties for the resolver:
57 * @see <A HREF="http://java.sun.com/j2se/1.4/docs/guide/net/properties.html">SUN J2SE docs for network properties</A>
68 /** Field properties[] */
69 private static final String properties[] = field in class:ResolverDirectHTTP
114 .properties[ResolverDirectHTTP.HttpProxyHost]);
117 .properties[ResolverDirectHTTP.HttpProxyPort]);
160 .properties[ResolverDirectHTTP.HttpProxyUser]);
163 .properties[ResolverDirectHTTP.HttpProxyPass]);
186 .properties[ResolverDirectHTT
[all...]
/openjdk7/jdk/make/tools/src/build/tools/stripproperties/
H A DStripProperties.java43 * Reads a properties file from standard input and writes an equivalent
44 * properties file without comments to standard output.
165 * Strip the properties filenames supplied, replacing their contents.
166 * @param args Names of properties files to process and replace contents
237 * Writes the content of <code>properties</code> to <code>out</code>.
245 private static void storeProperties(Properties properties, OutputStream out) argument
249 for (Enumeration e = properties.keys(); e.hasMoreElements();) {
251 String val = (String)properties.get(key);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/
H A DContextFactory.java66 public static JAXBContext createContext( Class[] classes, Map<String,Object> properties ) throws JAXBException {
67 // fool-proof check, and copy the map to make it easier to find unrecognized properties.
68 if(properties==null)
69 properties = Collections.emptyMap();
71 properties = new HashMap<String,Object>(properties);
73 String defaultNsUri = getPropertyValue(properties,JAXBRIContext.DEFAULT_NAMESPACE_REMAP,String.class);
75 Boolean c14nSupport = getPropertyValue(properties,JAXBRIContext.CANONICALIZATION_SUPPORT,Boolean.class);
79 Boolean allNillable = getPropertyValue(properties,JAXBRIContext.TREAT_EVERYTHING_NILLABLE,Boolean.class);
83 Boolean retainPropertyInfo = getPropertyValue(properties, JAXBRIContex
136 getPropertyValue(Map<String, Object> properties, String keyName, Class<T> type ) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DContextFinder.java128 Map properties )
132 return newInstance(contextPath, spFactory, classLoader, properties);
155 Map properties )
172 context = m.invoke(null,contextPath,classLoader,properties);
178 // try the old method that doesn't take properties. compatible with 1.0.
220 Map properties,
235 return newInstance(classes, properties, spi);
239 Map properties,
248 Object context = m.invoke(null, classes, properties);
267 static JAXBContext find(String factoryId, String contextPath, ClassLoader classLoader, Map properties ) throw
218 newInstance( Class[] classes, Map properties, String className) argument
238 newInstance(Class[] classes, Map properties, Class spFactory) argument
[all...]
/openjdk7/jdk/test/javax/management/Introspector/
H A DSetWrongTypeAttributeTest.java86 return properties;
89 this.properties = map;
94 private Map<String,String> properties; field in class:SetWrongTypeAttributeTest.BlahBase
121 return properties;
124 this.properties = map;
129 private Map<String,String> properties; field in class:SetWrongTypeAttributeTest.StdBlah
152 return properties;
155 this.properties = map;
160 private Map<String,String> properties; field in class:SetWrongTypeAttributeTest.StdMXBlah
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DArguments.java72 Properties properties) throws InvalidArgument
77 // Get package prefixes from user's properties file.
79 packageFromProps (properties);
214 super.parseOtherArgs (otherArgs, properties);
71 parseOtherArgs(String[] args, Properties properties) argument

Completed in 64 milliseconds

123