Searched defs:key (Results 176 - 200 of 907) sorted by relevance

1234567891011>>

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/msg/
H A DXMLMessageFormatter_sv.java61 * @param key The message key.
69 * specified key cannot be found.
71 public String formatMessage(Locale locale, String key, Object[] arguments) argument
87 msg = fResourceBundle.getString(key);
94 msg += " " + fResourceBundle.getString(key);
102 throw new MissingResourceException(key, msg, key);
107 msg = key;
H A DXMLMessageFormatter_zh_CN.java61 * @param key The message key.
69 * specified key cannot be found.
71 public String formatMessage(Locale locale, String key, Object[] arguments) argument
87 msg = fResourceBundle.getString(key);
94 msg += " " + fResourceBundle.getString(key);
102 throw new MissingResourceException(key, msg, key);
107 msg = key;
H A DXMLMessageFormatter_zh_TW.java61 * @param key The message key.
69 * specified key cannot be found.
71 public String formatMessage(Locale locale, String key, Object[] arguments) argument
87 msg = fResourceBundle.getString(key);
94 msg += " " + fResourceBundle.getString(key);
102 throw new MissingResourceException(key, msg, key);
107 msg = key;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/identity/
H A DKeyRef.java26 * Schema key reference identity constraint.
39 /** The key (or unique) being referred to. */
48 String elemName, UniqueOrKey key) {
50 fKey = key;
58 /** Returns the key being referred to. */
64 * {referenced key} Required if {identity-constraint category} is keyref,
66 * {identity-constraint category} equal to key or unique.
47 KeyRef(String namespace, String identityConstraintName, String elemName, UniqueOrKey key) argument
H A DValueStore.java64 * @param key the key of the localized error message
67 public void reportError(String key, Object[] args); argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DErrorHandlerAdaptor.java96 public void fatalError( String domain, String key, XMLParseException e ) { argument
105 public void error( String domain, String key, XMLParseException e ) { argument
114 public void warning( String domain, String key, XMLParseException e ) { argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DDefaultErrorHandler.java70 public void warning(String domain, String key, XMLParseException ex) argument
76 public void error(String domain, String key, XMLParseException ex) argument
82 public void fatalError(String domain, String key, XMLParseException ex) argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xpointer/
H A DXPointerErrorHandler.java68 public void warning(String domain, String key, XMLParseException ex) argument
74 public void error(String domain, String key, XMLParseException ex) argument
81 public void fatalError(String domain, String key, XMLParseException ex) argument
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DTrie.java28 * The key must be a 7-bit ASCII string
55 * @param key must be a 7-bit ASCII string
58 * @return The old object that matched key, or null.
60 public Object put(String key, Object value) argument
63 final int len = key.length();
74 Node nextNode = node.m_nextChar[Character.toUpperCase(key.charAt(i))];
85 // put this value into the tree with a case insensitive key
86 node.m_nextChar[Character.toUpperCase(key.charAt(i))] = newNode;
87 node.m_nextChar[Character.toLowerCase(key.charAt(i))] = newNode;
102 * Get an object that matches the key
108 get(final String key) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/
H A DCorbaResourceUtil.java32 public static String getString(String key) { argument
38 return resources.getString(key);
44 public static String getText(String key) { argument
45 String message = getString(key);
47 message = "no text found: \"" + key + "\"";
52 public static String getText(String key, int num) { argument
53 return getText(key, Integer.toString(num), null, null);
56 public static String getText(String key, String arg0) { argument
57 return getText(key, arg0, null, null);
60 public static String getText(String key, Strin argument
64 getText(String key, String arg0, String arg1, String arg2) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/util/
H A DRepositoryIdCache.java71 Object key = keys.nextElement();
75 cache.remove(key);
95 public final synchronized RepositoryId getId(String key) { argument
96 RepositoryId repId = (RepositoryId)super.get(key);
101 //repId = pool.popId().init(key);
102 repId = new RepositoryId(key);
103 put(key, repId);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DLazyBlockSym.java31 private Object key; field in class:LazyBlockSym
33 public LazyBlockSym(Object key) { argument
35 this.key = key;
41 public Object getKey() { return key; }
H A DLazyType.java32 private Object key; field in class:LazyType
35 public LazyType(Object key) { argument
36 this(key, 0);
39 private LazyType(Object key, int cvAttributes) { argument
42 Assert.that(key != null, "key must not be null");
44 this.key = key;
49 public Object getKey() { return key; }
65 return new LazyType(key, cvAttribute
[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:
41 * the key is of type <code>String</code>, the associated property
54 * <th>Property key</th>
280 * Obtain the property value specified by the key.
288 * @param key the key of the desired property
289 * @return the value of the property with the specified key,
295 public Object getProperty(String key) { argument
299 return properties.get(key);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DActionMap.java41 * when a key is pressed. As with <code>InputMap</code>,
91 * Adds a binding for <code>key</code> to <code>action</code>.
93 * for <code>key</code>.
94 * <p>In most instances, <code>key</code> will be
97 public void put(Object key, Action action) { argument
98 if (key == null) {
102 remove(key);
108 arrayTable.put(key, action);
113 * Returns the binding for <code>key</code>, messaging the
116 public Action get(Object key) { argument
133 remove(Object key) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/xml/crypto/
H A DKeySelector.java35 * A selector that finds and returns a key using the data contained in a
40 * <p>Whether or not the returned key is trusted and the mechanisms
50 * The purpose of the key that is to be selected.
67 * A key for signing.
71 * A key for verifying.
75 * A key for encrypting.
79 * A key for decrypting.
90 * Attempts to find a key that satisfies the specified constraints.
93 * @param purpose the key's purpose ({@link Purpose#SIGN},
96 * @param method the algorithm method that this key i
127 singletonKeySelector(Key key) argument
132 private final Key key; field in class:KeySelector.SingletonKeySelector
134 SingletonKeySelector(Key key) argument
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DExpiringCache.java73 synchronized String get(String key) { argument
77 Entry entry = entryFor(key);
84 synchronized void put(String key, String val) { argument
88 Entry entry = entryFor(key);
93 map.put(key, new Entry(System.currentTimeMillis(), val));
101 private Entry entryFor(String key) { argument
102 Entry entry = (Entry) map.get(key);
106 map.remove(key);
119 String key = (String) iter.next();
120 keys[i++] = key;
[all...]
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DFileTreeWalker.java140 Object key = attrs.fileKey();
142 // if this directory and ancestor has a file key then we compare
146 if (key != null && ancestorKey != null) {
147 if (key.equals(ancestorKey)) {
169 ancestors.add(new AncestorDirectory(file, key));
227 // remove key from trail if doing cycle detection
236 private final Object key; field in class:FileTreeWalker.AncestorDirectory
237 AncestorDirectory(Path dir, Object key) { argument
239 this.key = key;
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DIdentityScope.java35 * optionally have a public key and associated certificates.
45 * there can only be one copy of one key per scope. For example, suppose
47 * Suppose it is an Identity, that is, it has a public key, and a set of
50 * public key. Of course, none has the same name as well.
200 * Retrieves the identity with the specified public key.
202 * @param key the public key for the identity to be returned.
204 * @return the identity with the given key, or null if there are
205 * no identities in this scope with that key.
207 public abstract Identity getIdentity(PublicKey key); argument
[all...]
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCertificate.java40 * An identity certificate is a binding of a principal to a public key which
48 * some types of information (like a public key).
152 * private key that corresponds to the specified public key.
154 * @param key the PublicKey used to carry out the verification.
158 * @exception InvalidKeyException on incorrect key.
163 public abstract void verify(PublicKey key) argument
170 * private key that corresponds to the specified public key.
174 * @param key th
184 verify(PublicKey key, String sigProvider) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DSecretKeyFactory.java41 * cryptographic keys of type <code>Key</code>) into <I>key specifications</I>
42 * (transparent representations of the underlying key material), and vice
44 * Secret key factories operate only on secret (symmetric) keys.
47 * key object from a given key specification (key material), or to retrieve
48 * the underlying key material of a key object in a suitable format.
51 * to find out which key specifications are supported by the
55 * For example, the DES secret-key factor
370 getKeySpec(SecretKey key, Class keySpec) argument
405 translateKey(SecretKey key) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DCompositeData.java56 * Returns the value of the item whose name is <tt>key</tt>.
58 * @param key the name of the item.
60 * @return the value associated with this key.
62 * @throws IllegalArgumentException if <tt>key</tt> is a null or empty String.
64 * @throws InvalidKeyException if <tt>key</tt> is not an existing item name for this <tt>CompositeData</tt> instance.
66 public Object get(String key) ; argument
83 * an item whose name is <tt>key</tt>.
84 * If <tt>key</tt> is a null or empty String, this method simply returns false.
86 * @param key the key t
90 containsKey(String key) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DXColors.java62 private static XColor key = new XColor("", -1, -1, -1); field in class:XColors
65 key.name = name.toLowerCase();
67 int pos = Arrays.binarySearch(colors, key);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DThreadContext.java58 * value that was most recently pushed with the given key.</p>
70 "previous" and "key" both null. There is a different sentinel
73 Because a null key indicates the sentinel, we reject attempts to
74 push context entries with a null key.
100 private /*final*/ String key; field in class:ThreadContext
103 private ThreadContext(ThreadContext previous, String key, Object value) { argument
105 this.key = key;
110 * <p>Get the Object that was most recently pushed with the given key.</p>
112 * @param key th
124 get(String key) argument
146 contains(String key) argument
157 contextContaining(String key) argument
211 push(String key, Object value) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DNameNode.java105 * Returns the child node given the hash key (the down-cased label)
109 NameNode get(String key) { argument
111 ? (NameNode) children.get(key)
139 String key = name.getKey(i);
145 child = (NameNode) node.children.get(key);
150 node.children.put(key, child);

Completed in 66 milliseconds

1234567891011>>