Searched defs:key (Results 251 - 275 of 907) sorted by relevance

<<11121314151617181920>>

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/utils/
H A DStringToIntTable.java99 * @param key String to append
102 public final void put(String key, int value) argument
122 m_map[m_firstFree] = key;
131 * @param key String to look for
136 public final int get(String key) argument
141 if (m_map[i].equals(key))
151 * @param key String to look for
155 public final int getIgnoreCase(String key) argument
158 if (null == key)
163 if (m_map[i].equalsIgnoreCase(key))
177 contains(String key) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DStringToIntTable.java92 * @param key String to append
95 public final void put(String key, int value) argument
115 m_map[m_firstFree] = key;
124 * @param key String to look for
129 public final int get(String key) argument
134 if (m_map[i].equals(key))
144 * @param key String to look for
148 public final int getIgnoreCase(String key) argument
151 if (null == key)
156 if (m_map[i].equalsIgnoreCase(key))
170 contains(String key) argument
[all...]
H A DStringToStringTable.java85 * @param key String to add to the list
88 public final void put(String key, String value) argument
102 m_map[m_firstFree] = key;
114 * @param key String to look up
118 public final String get(String key) argument
123 if (m_map[i].equals(key))
133 * @param key String to remove from the table
135 public final void remove(String key) argument
140 if (m_map[i].equals(key))
157 * @param key Strin
161 getIgnoreCase(String key) argument
214 contains(String key) argument
[all...]
H A DStringToStringTableVector.java116 * that matches the key.
118 * @param key String to look up
120 * @return the last added occurance value that matches the key
123 public final String get(String key) argument
128 String nsuri = m_map[i].get(key);
139 * that matches the key.
141 * @param key String to look for
145 public final boolean containsKey(String key) argument
150 if (m_map[i].get(key) != null)
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/oa/poa/
H A DPOAPolicyMediatorBase_R.java70 protected Servant internalKeyToServant( ActiveObjectMap.Key key )
72 AOMEntry entry = activeObjectMap.get(key);
81 ActiveObjectMap.Key key = new ActiveObjectMap.Key( id ) ;
82 return internalKeyToServant( key ) ;
85 protected void activateServant( ActiveObjectMap.Key key, AOMEntry entry, Servant servant ) argument
87 setDelegate(servant, key.id );
108 ActiveObjectMap.Key key = new ActiveObjectMap.Key( id ) ;
110 AOMEntry entry = activeObjectMap.get( key ) ;
114 activateServant( key, entry, servant ) ;
120 ActiveObjectMap.Key key
124 deactivateHelper( ActiveObjectMap.Key key, AOMEntry entry, Servant s ) argument
[all...]
H A DPOAPolicyMediatorImpl_R_USM.java79 private AOMEntry enterEntry( ActiveObjectMap.Key key )
85 result = activeObjectMap.get(key) ;
107 ActiveObjectMap.Key key = new ActiveObjectMap.Key( id ) ;
108 AOMEntry entry = enterEntry(key) ;
214 activateServant(key, entry, (Servant)servant);
232 ActiveObjectMap.Key key = new ActiveObjectMap.Key( id ) ;
233 AOMEntry entry = activeObjectMap.get( key ) ;
249 ActiveObjectMap.Key key = keys[ctr] ;
250 AOMEntry entry = activeObjectMap.get( key ) ;
265 activator.etherealize(key
308 private ActiveObjectMap.Key key ; field in class:POAPolicyMediatorImpl_R_USM.Etherealizer
313 Etherealizer( POAPolicyMediatorImpl_R_USM mediator, ActiveObjectMap.Key key, AOMEntry entry, Servant servant, boolean debug ) argument
358 deactivateHelper( ActiveObjectMap.Key key, AOMEntry entry, Servant servant ) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/util/
H A DJDKClassLoader.java88 Object key = classCache.createKey(className, loader);
90 if (classCache.knownToFail(key)) {
102 classCache.recordFailure(key);
116 public final void recordFailure(Object key) { argument
117 cache.put(key, JDKClassLoaderCache.KNOWN_TO_FAIL);
120 // Factory for a key (CacheKey is an implementation detail
123 // A key currently consists of the class name as well as
132 public final boolean knownToFail(Object key) { argument
133 return cache.get(key) == JDKClassLoaderCache.KNOWN_TO_FAIL;
142 // key
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orb/
H A DParserImplTableBase.java62 private Object key ; field in class:ParserImplTableBase.MapEntry
65 public MapEntry( Object key )
67 this.key = key ;
72 return key ;
94 return (key.equals( other.key )) &&
100 return key.hashCode() ^ value.hashCode() ;
110 // correct (key, value) pairs (nested typed lambda expression).
/openjdk7/hotspot/agent/src/share/classes/com/sun/java/swing/action/
H A DActionManager.java56 public Action getAction(String key) argument
58 return (Action)actions.get(key);
/openjdk7/jdk/src/share/classes/javax/script/
H A DAbstractScriptEngine.java153 * Sets the specified value with the specified key in the <code>ENGINE_SCOPE</code>
156 * @param key The specified key.
159 * @throws NullPointerException if key is null.
160 * @throws IllegalArgumentException if key is empty.
162 public void put(String key, Object value) { argument
166 nn.put(key, value);
172 * Gets the value for the specified key in the <code>ENGINE_SCOPE</code> of the
175 * @return The value for the specified key.
177 * @throws NullPointerException if key i
180 get(String key) argument
[all...]
H A DScriptEngine.java40 * The values are key/value pairs of two types. The first type of pairs consists of
54 * Reserved key for a named value that passes
60 * Reserved key for a named value that is
66 * Reserved key for a named value that is
72 * Reserved key for a named value that identifies
78 * Reserved key for a named value that identifies
86 * Reserved key for a named value that is
92 * Reserved key for the named value that identifies
202 * Sets a key/value pair in the state of the ScriptEngine that may either create
204 * other way, depending on whether the key i
213 put(String key, Object value) argument
228 get(String key) argument
[all...]
H A DScriptEngineFactory.java114 * A reserved key, <code><b>THREADING</b></code>, whose value describes the behavior of the engine
116 * These values for the <code><b>THREADING</b></code> key are:<br><br>
135 * @param key The name of the parameter
137 * value is assigned to the key.
140 public Object getParameter(String key); argument
H A DSimpleBindings.java67 * Sets the specified key/value in the underlying <code>map</code> field.
72 * @return Previous value for the specified key. Returns null if key was previously
89 * if toMerge map is null or if some key in the map is null.
91 * if some key in the map is an empty String.
98 String key = entry.getKey();
99 checkKey(key);
100 put(key, entry.getValue());
111 * key. More formally, returns <tt>true</tt> if and only if
112 * this map contains a mapping for a key <t
124 containsKey(Object key) argument
160 get(Object key) argument
197 remove(Object key) argument
212 checkKey(Object key) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/security/auth/
H A DSubjectDomainCombiner.java540 * corresponding key object (the "current" non-principal-based PD),
541 * which will prevent the key from being GC'd. Specifically,
549 public V getValue(K key) { argument
550 WeakReference<V> wr = super.get(key);
557 public V putValue(K key, V value) { argument
558 WeakReference<V> wr = super.put(key, new WeakReference<V>(value));
/openjdk7/jdk/src/share/classes/javax/security/auth/kerberos/
H A DKerberosKey.java34 * This class encapsulates a long term secret key for a Kerberos
38 * generate the secret key from it should use this class.
65 * The principal that this secret key belongs to.
72 * the version number of this secret key
80 * of the encryption key.
92 private KeyImpl key; field in class:KerberosKey
96 * Constructs a KerberosKey from the given bytes when the key type and
97 * key version number are known. This can be used when reading the secret
98 * key information from a Kerberos "keytab".
100 * @param principal the principal that this secret key belong
[all...]
/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:
48 * the key is of type <code>String</code>, the associated property
61 * <th>Property key</th>
258 * Obtain the property value specified by the key.
266 * @param key the key of the desired property
267 * @return the value of the property with the specified key,
273 public Object getProperty(String key) { argument
277 return properties.get(key);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DAction.java217 * Useful constants that can be used as the storage-retrieval key
226 * The key used for storing the <code>String</code> name
231 * The key used for storing a short <code>String</code>
236 * The key used for storing a longer <code>String</code>
241 * The key used for storing a small <code>Icon</code>, such
254 * The key used to determine the command <code>String</code> for the
263 * The key used for storing a <code>KeyStroke</code> to be used as the
271 * The key used for storing an <code>Integer</code> that corresponds to
272 * one of the <code>KeyEvent</code> key codes. The value is
284 * The key use
343 getValue(String key) argument
353 putValue(String key, Object value) argument
[all...]
H A DArrayTable.java34 * Private storage mechanism for Action key-value pairs.
36 * key-value pairs. As it grows larger it is scaled
53 * The data is saved as an integer indicating how many key/value
54 * pairs are being archived, followed by the the key/value pairs. If
73 Object key = keys[counter];
76 if ( (key instanceof Serializable
77 && table.get(key) instanceof Serializable)
80 (key instanceof ClientPropertyKey
81 && ((ClientPropertyKey)key).getReportValueNotSerializable())) {
88 // Write ou the Serializable key/valu
108 put(Object key, Object value) argument
144 get(Object key) argument
180 containsKey(Object key) argument
202 remove(Object key) argument
[all...]
H A DInputMap.java40 * when a key is pressed.
133 * Removes the binding for <code>key</code> from this
136 public void remove(KeyStroke key) { argument
138 arrayTable.remove(key);
H A DMultiUIDefaults.java56 public Object get(Object key) argument
58 Object value = super.get(key);
64 value = (table != null) ? table.get(key) : null;
74 public Object get(Object key, Locale l) argument
76 Object value = super.get(key,l);
82 value = (table != null) ? table.get(key,l) : null;
161 public Object remove(Object key) argument
166 Object v = tables[i].remove(key);
172 Object v = super.remove(key);
196 Object key
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/
H A DAbstractColorChooserPanel.java209 * Returns an integer from the defaults table. If <code>key</code> does
213 * @param key an <code>Object</code> specifying the int
214 * @param defaultValue Returned value if <code>key</code> is not available,
218 int getInt(Object key, int defaultValue) { argument
219 Object value = UIManager.get(key, getLocale());
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DLazyActionMap.java100 public void put(Object key, Action action) { argument
102 super.put(key, action);
105 public Action get(Object key) { argument
107 return super.get(key);
110 public void remove(Object key) { argument
112 super.remove(key);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DNimbusIcon.java44 private String key; field in class:NimbusIcon
46 NimbusIcon(String prefix, String key, int w, int h) { argument
50 this.key = key;
58 painter = (Painter)context.getStyle().get(context, key);
61 painter = (Painter) UIManager.get(prefix + "[Enabled]." + key);
143 Painter painter = (Painter)UIManager.get(prefix + "[Enabled]." + key);
209 // The key "JComponent.sizeVariant" is used to match Apple's LAF
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DAttributeSet.java31 * immutable interface. An attribute is basically a key and
32 * a value assigned to the key. The collection may represent
41 * key doesn't resolve locally, and a resolving parent
42 * exists, the key will be resolved through the parent.
51 * to be present on any attribute key that contributes to
64 * to be present on any attribute key that contributes to
72 * to be present on any attribute key that contributes to
82 * to be present on any attribute key that contributes to
129 * @param key the non-null key o
132 getAttribute(Object key) argument
[all...]
H A DKeymap.java40 * Fetches the name of the set of key-bindings.
48 * key is typed (i.e. a KEY_TYPED KeyEvent is received)
52 * possible key.
59 * Set the default action to fire if a key is typed.
68 * determine how to interpret key sequences. If the
72 * @param key the key sequence
73 * @return the action associated with the key
76 public Action getAction(KeyStroke key); argument
103 * Determines if the given key sequenc
108 isLocallyDefined(KeyStroke key) argument
116 addActionForKeyStroke(KeyStroke key, Action a) argument
[all...]

Completed in 1123 milliseconds

<<11121314151617181920>>