Searched defs:populate (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/bean/
H A DObjectFactoryGenerator.java46 abstract void populate( CElementInfo ei ); method in class:ObjectFactoryGenerator
52 abstract void populate( ClassOutlineImpl cc ); method in class:ObjectFactoryGenerator
H A DPrivateObjectFactoryGenerator.java64 void populate(CElementInfo ei) { method in class:PrivateObjectFactoryGenerator
65 populate(ei,Aspect.IMPLEMENTATION,Aspect.IMPLEMENTATION);
68 void populate(ClassOutlineImpl cc) { method in class:PrivateObjectFactoryGenerator
69 populate(cc,cc.implRef);
H A DPublicObjectFactoryGenerator.java43 void populate(CElementInfo ei) { method in class:PublicObjectFactoryGenerator
44 populate(ei,Aspect.IMPLEMENTATION,Aspect.EXPOSED);
47 void populate(ClassOutlineImpl cc) { method in class:PublicObjectFactoryGenerator
48 populate(cc,cc.ref);
H A DDualObjectFactoryGenerator.java59 void populate(CElementInfo ei) { method in class:DualObjectFactoryGenerator
60 publicOFG.populate(ei);
61 privateOFG.populate(ei);
64 void populate(ClassOutlineImpl cc) { method in class:DualObjectFactoryGenerator
65 publicOFG.populate(cc);
66 privateOFG.populate(cc);
H A DObjectFactoryGeneratorImpl.java153 protected final void populate( CElementInfo ei, Aspect impl, Aspect exposed ) { method in class:ObjectFactoryGeneratorImpl
290 protected final void populate( ClassOutlineImpl cc, JClass sigType ) { method in class:ObjectFactoryGeneratorImpl
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DPopulatable.java43 public void populate( Model model, Outline context ); method in interface:Populatable
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/jaxws/
H A DBuilderHandler.java62 final void populate(final PolicyMapExtender policyMapExtender) throws PolicyException { method in class:BuilderHandler
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DZoneNode.java126 NameNode populate(DnsName zone, ResourceRecords rrs) { method in class:ZoneNode
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvmmib/
H A DJVM_MANAGEMENT_MIB.java74 populate(null, null);
101 populate(server, name);
110 public void populate(MBeanServer server, ObjectName name) method in class:JVM_MANAGEMENT_MIB
/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DCachedRowSet.java62 * data source while it is reading data to populate itself with rows and again
89 * data source to populate itself with data. A reader can be implemented to read
363 * crs.populate(rs);
384 * database. The reader for a rowset can be implemented to read and populate
417 * In order to be able to populate itself with data from a database, a rowset
474 * <code>rs</code> with which to populate <code>crs</code>.
511 * using either the method <code>populate</code> or the method <code>execute</code>.
512 * The following lines of code demonstrate using the method <code>populate</code>.
520 * crs.populate(rsHandle, 10);
639 * Using the method <code>populate</cod
655 public void populate(ResultSet data) throws SQLException; method in interface:CachedRowSet
1577 public void populate(ResultSet rs, int startRow) throws SQLException; method in interface:CachedRowSet
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DBGMBuilder.java293 populate(s.getAttGroupDecls(),s);
294 populate(s.getAttributeDecls(),s);
295 populate(s.getElementDecls(),s);
296 populate(s.getModelGroupDecls(),s);
331 * to populate class items if there is any.
333 private void populate( Map<String,? extends XSComponent> col, XSSchema schema ) { method in class:BGMBuilder
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DSyncResolverImpl.java539 * for filling the rowset with data. The method <code>populate</code>
542 * be set. This is true because the method <code>populate</code>
549 * <code>populate</code> sets the rowset's metadata and
559 public void populate(ResultSet data) throws SQLException { method in class:SyncResolverImpl
578 * @see #populate
4077 * used to populate this rowset with data or to write data back
4718 * the given <code>ResultSet</code> object. While related to the <code>populate(ResultSet)</code>
4720 * the <code>ResultSet</code> from where to populate the CachedRowSet
4724 * for filling the rowset with data. The method <code>populate</code>
4727 * be set. This is true because the method <code>populate</cod
4748 public void populate(ResultSet data, int start) throws SQLException{ method in class:SyncResolverImpl
[all...]
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DCachedRowSetImpl.java216 * a ResultSet and start position are passed as parameters to the populate function
233 * The integer value indicating the position in the ResultSet, to populate the
271 * The integer value indicating how many times the populate function has been called.
277 * ResultSet object passed to the populate function.
289 * parameter is passed to populate the CachedRowSet object for paging.
599 * for filling the rowset with data. The method <code>populate</code>
602 * be set. This is true because the method <code>populate</code>
609 * <code>populate</code> sets the rowset's metadata and
620 public void populate(ResultSet data) throws SQLException { method in class:CachedRowSetImpl
630 throw new SQLException(resBundle.handleGetObject("cachedrowsetimpl.populate")
7239 public void populate(ResultSet data, int start) throws SQLException{ method in class:CachedRowSetImpl
[all...]

Completed in 61 milliseconds