Searched refs:getObject (Results 176 - 200 of 225) sorted by relevance

123456789

/openjdk7/jdk/src/share/classes/java/sql/
H A DResultSet.java880 * <code>getObject</code> is extended to materialize
887 * if it were a call to: <code>getObject(columnIndex,
902 Object getObject(int columnIndex) throws SQLException; method in interface:ResultSet
920 * <code>getObject</code> is extended to materialize
923 * if it were a call to: <code>getObject(columnIndex,
932 Object getObject(String columnLabel) throws SQLException; method in interface:ResultSet
2448 Object getObject(int columnIndex, java.util.Map<String,Class<?>> map) method in interface:ResultSet
2540 Object getObject(String columnLabel, java.util.Map<String,Class<?>> map) method in interface:ResultSet
4107 public <T> T getObject(int columnIndex, Class<T> type) throws SQLException; method in interface:ResultSet
4137 public <T> T getObject(Strin method in interface:ResultSet
[all...]
/openjdk7/jdk/src/share/classes/sun/util/
H A DLocaleServiceProviderPool.java294 * @param getter an object on which getObject() method
310 * @param getter an object on which getObject() method
331 * @param getter an object on which getObject() method
387 providersObj = getter.getObject(lsp, locale, key, params);
411 providersObj = getter.getObject(lsp, locale, key, params);
540 public S getObject(P lsp, method in interface:LocaleServiceProviderPool.LocalizedObjectGetter
H A DTimeZoneNameUtility.java150 public String[] getObject(TimeZoneNameProvider timeZoneNameProvider, method in class:TimeZoneNameUtility.TimeZoneNameGetter
/openjdk7/jdk/src/share/classes/sun/misc/
H A DUnsafe.java182 public native Object getObject(Object o, long offset); method in class:Unsafe
252 public Object getObject(Object o, int offset) { method in class:Unsafe
253 return getObject(o, (long)offset);
905 * load semantics. Otherwise identical to {@link #getObject(Object, long)}
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DLazySearchEnumerationImpl.java32 * ((DirContext)item.getObject()).getAttributes("").
33 * If item.getObject() is not an DirContext, the item is skipped
142 obj = next.getObject();
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DTest6187118.java46 protected ImmutableList<String> getObject() { method in class:Test6187118
H A DTest6921644.java40 protected Object getObject() { method in class:Test6921644
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DContextualGlyphInsertionProc2.cpp93 insertGlyphs[targetIndex++] = insertionTable.getObject(index++, success);
H A DLigatureSubstProc.cpp123 i += SWAPW(offsetTable.getObject(LE_GET_GLYPH(glyphStorage[componentGlyph]), success));
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXTextFieldEditor.java129 return ((XObject) object).getObject();
/openjdk7/corba/src/share/classes/sun/corba/
H A DBridge.java250 public final Object getObject(Object o, long offset) method in class:Bridge
252 return unsafe.getObject( o, offset ) ;
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/serialization/
H A DXMLParser.java105 return getParentElement().getObject();
135 public T getObject() { method in class:XMLParser.ElementHandler
H A DParser.java135 getParentObject().addGroup(getObject());
369 getParentObject().getProperties().setProperty(getObject(), text.trim().intern());
431 return topHandler.getObject();
/openjdk7/jdk/src/share/classes/java/text/
H A DCollator.java535 public Collator getObject(CollatorProvider collatorProvider, method in class:Collator.CollatorGetter
H A DBreakIterator.java694 public BreakIterator getObject(BreakIteratorProvider breakIteratorProvider, method in class:BreakIterator.BreakIteratorGetter
/openjdk7/jdk/test/java/util/PluggableLocale/
H A DDateFormatProviderTest.java80 jreDateTimePatterns = (String[])rb.getObject(key);
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DNativeObject.java123 NativeObject getObject(int offset) { method in class:NativeObject
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftPerformer.java353 String o = id.getObject();
496 if (sources[i].getIdentifier().getObject().equals(
553 if (srcid.getObject().equals("midi_cc")) {
561 if (srcid.getObject().equals("midi")) {
606 && sources[0].getIdentifier().getObject().equals("lfo")) {
708 if (id.getObject().equals("noteon")) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DCompiledVFrame.java148 result.add(new MonitorInfo(ownerSV.getObject(), resolveMonitorLock(mv.basicLock()), mv.eliminated(), false));
/openjdk7/jdk/src/share/classes/java/util/
H A DResourceBundle.java162 * as well as a generic <code>getObject</code> method for any other
163 * type of object. When using <code>getObject</code>, you'll
167 * int[] myIntegers = (int[]) myResources.getObject("intList");
303 * The parent bundle is searched by {@link #getObject getObject}
345 * <code>(String) {@link #getObject(java.lang.String) getObject}(key)</code>.
355 return (String) getObject(key);
362 * <code>(String[]) {@link #getObject(java.lang.String) getObject}(ke
388 public final Object getObject(String key) { method in class:ResourceBundle
[all...]
/openjdk7/jdk/src/share/demo/jfc/TableExample/
H A DJDBCAdapter.java108 newRow.add(resultSet.getObject(i));
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DJdbcRowSetImpl.java1635 * <code>getObject</code> is extended to materialize
1638 * if it were a call to: <code>getObject(columnIndex,
1647 public Object getObject(int columnIndex) throws SQLException { method in class:JdbcRowSetImpl
1650 return rs.getObject(columnIndex);
1668 * <code>getObject</code> is extended to materialize
1671 * if it were a call to: <code>getObject(columnIndex,
1680 public Object getObject(String columnName) throws SQLException { method in class:JdbcRowSetImpl
1681 return getObject(findColumn(columnName));
3198 public Object getObject(int i, java.util.Map<String,Class<?>> map) method in class:JdbcRowSetImpl
3203 return rs.getObject(
3289 public Object getObject(String colName, java.util.Map<String,Class<?>> map) method in class:JdbcRowSetImpl
7040 public <T> T getObject(int columnIndex, Class<T> type) throws SQLException { method in class:JdbcRowSetImpl
7044 public <T> T getObject(String columnLabel, Class<T> type) throws SQLException { method in class:JdbcRowSetImpl
[all...]
H A DCachedRowSetImpl.java659 * is set then use plain getObject. This lets
661 * getObject with a map in fairly sensible way
664 obj = data.getObject(i);
666 obj = data.getObject(i, map);
1325 vec.add(crsTemp.getObject(column));
2921 * This implementation of the method <code>getObject</code> extends its
2927 * if it were a call to the method <code>getObject(columnIndex,
2938 * @see #getObject(String)
2940 public Object getObject(int columnIndex) throws SQLException { method in class:CachedRowSetImpl
2999 * This implementation of the method <code>getObject</cod
3018 public Object getObject(String columnName) throws SQLException { method in class:CachedRowSetImpl
5689 public Object getObject(int columnIndex, method in class:CachedRowSetImpl
5913 public Object getObject(String columnName, method in class:CachedRowSetImpl
10124 public <T> T getObject(int columnIndex, Class<T> type) throws SQLException { method in class:CachedRowSetImpl
10128 public <T> T getObject(String columnLabel, Class<T> type) throws SQLException { method in class:CachedRowSetImpl
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/io/
H A DIIOPInputStream.java388 return activeRecursionMgr.getObject(cdrie.offset);
2097 objectValue = activeRecursionMgr.getObject(cdrie.offset);
2191 objectValue = activeRecursionMgr.getObject(cdrie.offset);
2238 objectValue = activeRecursionMgr.getObject(cdrie.offset);
2340 objectValue = activeRecursionMgr.getObject(cdrie.offset);
2707 public Object getObject(int offset) throws IOException { method in class:IIOPInputStream.ActiveRecursionManager
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DDriver.java399 String[] packUsage = (String[])RESOURCE.getObject(DriverResource.PACK_HELP);
400 String[] unpackUsage = (String[])RESOURCE.getObject(DriverResource.UNPACK_HELP);

Completed in 397 milliseconds

123456789