Method get(Object key)
Return type:
java.lang.Object
<V>
Member of:
java.util.Hashtable
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
return (ExceptionSpec)exceptionSpecs.get(label == null ? "" : label.getText());
2
return (ExceptionSpec)exceptionSpecs.get(label == null ? "" : label);
3
pages.put((String)(currentPage.getAtts()).get("master-name"), currentPage);
4
return (String)props.get( "handler.channel.className");
5
return (String)props.get( "handler.container.className");
6
return (String) get("iconbase"); //NOI18N
7
if (prop.get(key) != null) return;
8
return (properties.get(name) == null);
9
return ((Hashtable)v.elementAt(idx)).get(colName);
10
public Object get(String k) { return _props.get(k); }
11
return (String) hStringJDBCtypes.get(new Integer(type));
12
return (StageWrapperIF)threads.get(thread);
13
return myProperties.get(key);
14
return (Param)params.get(paramName);
15
return (classes.get(className) != null ? true : false);
16
return ((Object[]) getNameTable(getMethodCache(isStatic), name) .get(c));
17
return (PublicCertificate) publicCertificates.get(new Long(keyID));
18
return ((Boolean)fFeatures.get(feature)).booleanValue();
19
return (ScaleColumn) columns.get(id);
20
return attributes.get(key);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.