Searched defs:key (Results 51 - 75 of 907) sorted by relevance

1234567891011>>

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DDatatypeMessageFormatter.java43 * @param key The message key.
51 * specified key cannot be found.
54 String key, Object[] arguments)
70 msg = resourceBundle.getString(key);
77 msg += " " + resourceBundle.getString(key);
85 throw new MissingResourceException(key, msg, key);
90 msg = key;
53 formatMessage(Locale locale, String key, Object[] arguments) argument
H A DMessageFormatter.java47 * @param key The message key.
55 * specified key cannot be found.
57 public String formatMessage(Locale locale, String key, Object[] arguments) argument
H A DSAXMessageFormatter.java41 * @param key The message key.
49 * specified key cannot be found.
52 String key, Object[] arguments)
68 msg = resourceBundle.getString(key);
75 msg += " " + resourceBundle.getString(key);
83 throw new MissingResourceException(key, msg, key);
88 msg = key;
51 formatMessage(Locale locale, String key, Object[] arguments) argument
H A DXMLErrorCode.java25 * a domain and a message key.</p>
39 /** message key **/
43 * <p>Constructs an XMLErrorCode with the given domain and key.</p>
46 * @param key The key of the error message.
48 public XMLErrorCode(String domain, String key) { argument
50 fKey = key;
57 * @param key The key of the error message.
59 public void setValues(String domain, String key) { argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xinclude/
H A DXIncludeMessageFormatter.java50 * @param key The message key.
58 * specified key cannot be found.
60 public String formatMessage(Locale locale, String key, Object[] arguments) argument
73 String msg = fResourceBundle.getString(key);
79 msg += " " + fResourceBundle.getString(key);
85 throw new MissingResourceException(msg, "com.sun.org.apache.xerces.internal.impl.msg.XIncludeMessages", key);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/
H A DAugmentations.java29 * information is identified by a String key.
45 * Add additional information identified by a key to the Augmentations structure.
47 * @param key Identifier, can't be <code>null</code>
50 * @return the previous value of the specified key in the Augmentations structure,
53 public Object putItem (String key, Object item); argument
57 * Get information identified by a key from the Augmentations structure
59 * @param key Identifier, can't be <code>null</code>
61 * @return the value to which the key is mapped in the Augmentations structure;
62 * <code>null</code> if the key is not mapped to any value.
64 public Object getItem(String key); argument
74 removeItem(String key) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/parser/
H A DXMLErrorHandler.java50 * @param key The warning key. This key can be any string and
57 public void warning(String domain, String key, argument
69 * @param key The error key. This key can be any string and
76 public void error(String domain, String key, argument
96 * @param key The fatal error key
103 fatalError(String domain, String key, XMLParseException exception) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xpointer/
H A DXPointerMessageFormatter.java52 * @param key
53 * The message key.
62 * Thrown if the message with the specified key cannot be found.
64 public String formatMessage(Locale locale, String key, Object[] arguments) argument
79 String msg = fResourceBundle.getString(key);
85 msg += " " + fResourceBundle.getString(key);
92 "com.sun.org.apache.xerces.internal.impl.msg.XPointerMessages", key);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DOutputPropertyUtils.java40 * Searches for the boolean property with the specified key in the property list.
41 * If the key is not found in this property list, the default property list,
46 * @param key the property key.
51 public static boolean getBooleanProperty(String key, Properties props) argument
54 String s = props.getProperty(key);
63 * Searches for the int property with the specified key in the property list.
64 * If the key is not found in this property list, the default property list,
69 * @param key the property key
74 getIntProperty(String key, Properties props) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DCharKey.java27 * hashtables. You can set the char, then use it as a key.
39 * @param key char value of this object.
41 public CharKey(char key) argument
43 m_char = key;
/openjdk7/jaxp/src/com/sun/xml/internal/stream/
H A DStaxErrorReporter.java77 * @param key The key of the error message.
87 String domain, String key, Object[] arguments,
93 message = messageFormatter.formatMessage(fLocale, key, arguments);
99 str.append(key);
86 reportError(XMLLocator location, String domain, String key, Object[] arguments, short severity) argument
/openjdk7/jaxp/src/org/w3c/dom/
H A DUserDataHandler.java45 * When associating an object to a key on a node using
88 * @param key Specifies the key for which this handler is being called.
96 String key,
95 handle(short operation, String key, Object data, Node src, Node dst) argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DCodeSetCache.java55 * the byte to char converter Map. A key is the Java
62 * the char to byte converter Map. A key is the Java
68 * Retrieve a CharsetDecoder from the Map using the given key.
70 CharsetDecoder getByteToCharConverter(Object key) { argument
73 return (CharsetDecoder)btcMap.get(key);
77 * Retrieve a CharsetEncoder from the Map using the given key.
79 CharsetEncoder getCharToByteConverter(Object key) { argument
82 return (CharsetEncoder)ctbMap.get(key);
89 CharsetDecoder setConverter(Object key, CharsetDecoder converter) { argument
92 btcMap.put(key, converte
101 setConverter(Object key, CharsetEncoder converter) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/
H A DDenseIntMapImpl.java32 * keys in the range 0..max such that "most" of the key space is actually
39 private void checkKey( int key )
41 if (key < 0)
45 /** If key >= 0, return the value bound to key, or null if none.
46 * Throws IllegalArgumentException if key <0.
48 public Object get( int key )
50 checkKey( key ) ;
53 if (key < list.size())
54 result = list.get( key ) ;
62 set( int key, Object value ) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/logging/
H A DLogWrapperBase.java43 protected void doLog( Level level, String key, Object[] params, Class wrapperClass, argument
46 LogRecord lrec = new LogRecord( level, key ) ;
88 protected void doLog( Level level, String key, Class wrapperClass, Throwable thr ) argument
90 doLog( level, key, null, wrapperClass, thr ) ;
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DResourceBundleUtil.java68 public static String getMessage (String key) argument
70 return fBundle.getString(key);
73 public static String getMessage (String key, String fill) argument
76 return MessageFormat.format(fBundle.getString(key), args);
79 public static String getMessage (String key, String[] fill) argument
81 return MessageFormat.format(fBundle.getString(key), fill);
/openjdk7/jdk/src/share/classes/javax/script/
H A DBindings.java30 * A mapping of key/value pairs, all of whose keys are
56 * if toMerge map is null or if some key in the map is null.
58 * if some key in the map is an empty String.
64 * key. More formally, returns <tt>true</tt> if and only if
65 * this map contains a mapping for a key <tt>k</tt> such that
66 * <tt>(key==null ? k==null : key.equals(k))</tt>. (There can be
69 * @param key key whose presence in this map is to be tested.
71 * key
77 containsKey(Object key) argument
100 get(Object key) argument
124 remove(Object key) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/security/auth/x500/
H A DX500PrivateCredential.java34 * It associates an X.509 certificate, corresponding private key and the
35 * KeyStore alias used to reference that exact key pair in the KeyStore.
42 private PrivateKey key; field in class:X500PrivateCredential
47 * a private key and the KeyStore alias.
50 * @param key PrivateKey for the certificate
52 * <code>key</code> is null
56 public X500PrivateCredential(X509Certificate cert, PrivateKey key) { argument
57 if (cert == null || key == null )
60 this.key = key;
75 X500PrivateCredential(X509Certificate cert, PrivateKey key, String alias) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/security/cert/
H A DCertificate.java38 * a public key is that of another principal. (A principal represents
45 * some types of information (like a public key).
129 * private key that corresponds to the specified public key.
131 * @param key the PublicKey used to carry out the verification.
135 * @exception InvalidKeyException on incorrect key.
140 public abstract void verify(PublicKey key) argument
147 * private key that corresponds to the specified public key.
151 * @param key th
159 verify(PublicKey key, String sigProvider) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DComponentInputMap.java99 * Removes the binding for <code>key</code> from this object.
101 public void remove(KeyStroke key) { argument
102 super.remove(key);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalFontDesktopProperty.java55 * Creates a MetalFontDesktopProperty. The key used to lookup the
67 * @param key Key used in looking up desktop value.
73 MetalFontDesktopProperty(String key, int type) { argument
74 super(key, null);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDateFormatter.java114 Object key = attrs.next();
116 if ((key instanceof DateFormat.Field) &&
117 (key == DateFormat.Field.HOUR1 ||
118 ((DateFormat.Field)key).getCalendarField() != -1)) {
119 return key;
129 Object adjustValue(Object value, Map attributes, Object key, argument
132 if (key != null) {
137 if (key == DateFormat.Field.HOUR1) {
138 key = DateFormat.Field.HOUR0;
140 field = ((DateFormat.Field)key)
[all...]
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletMessageHandler.java55 String getMessage(String key) { argument
56 return (String)rb.getString(getQualifiedKey(key));
59 String getMessage(String key, Object arg){ argument
60 String basemsgfmt = (String)rb.getString(getQualifiedKey(key));
70 String getMessage(String key, Object arg1, Object arg2) { argument
71 String basemsgfmt = (String)rb.getString(getQualifiedKey(key));
85 String getMessage(String key, Object arg1, Object arg2, Object arg3) { argument
86 String basemsgfmt = (String)rb.getString(getQualifiedKey(key));
104 String getMessage(String key, Object arg[]) { argument
105 String basemsgfmt = (String)rb.getString(getQualifiedKey(key));
[all...]
H A DAppletSecurityException.java35 private String key = null; field in class:AppletSecurityException
40 this.key = name;
58 return amh.getMessage(key, msgobj);
60 return amh.getMessage(key);
/openjdk7/jdk/src/share/classes/sun/awt/shell/
H A DShellFolderManager.java47 * @param key a <code>String</code>
64 * @return An Object matching the key string.
66 public Object get(String key) { argument
67 if (key.equals("fileChooserDefaultFolder")) {
75 } else if (key.equals("roots")) {
78 } else if (key.equals("fileChooserComboBoxFolders")) {
82 } else if (key.equals("fileChooserShortcutPanelFolders")) {

Completed in 65 milliseconds

1234567891011>>