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

/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCollectionCertStoreParameters.java81 * @param collection a <code>Collection</code> of
83 * @exception NullPointerException if <code>collection</code> is
86 public CollectionCertStoreParameters(Collection<?> collection) { argument
87 if (collection == null)
89 coll = collection;
137 sb.append(" collection: " + coll + "\n");
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DFinalArrayList.java43 public FinalArrayList(Collection collection) { argument
44 super(collection);
/openjdk7/jdk/src/share/classes/javax/print/attribute/standard/
H A DJobStateReasons.java109 * {@link JobStateReason JobStateReason} objects as the given collection.
115 * @param collection Collection to copy.
118 * (unchecked exception) Thrown if <CODE>collection</CODE> is null or
119 * if any element in <CODE>collection</CODE> is null.
122 * <CODE>collection</CODE> is not an instance of class {@link
125 public JobStateReasons(Collection<JobStateReason> collection) { argument
126 super (collection);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJForEach.java40 private final JExpression collection; field in class:JForEach
43 public JForEach(JType vartype, String variable, JExpression collection) { argument
47 this.collection = collection;
48 loopVar = new JVar(JMods.forVar(JMod.NONE), type, var, collection);
67 f.g(type).id(var).p(": ").g(collection);
H A DJBlock.java444 public JForEach forEach(JType varType, String name, JExpression collection) { argument
445 return insert(new JForEach( varType, name, collection));
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DCipherSuiteList.java155 Collection<CipherSuite> collection() { method in class:CipherSuiteList
H A DProtocolList.java109 Collection<ProtocolVersion> collection() { method in class:ProtocolList
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DTypeUseImpl.java47 private final boolean collection; field in class:TypeUseImpl
53 public TypeUseImpl(CNonElement itemType, boolean collection, ID id, MimeType expectedMimeType, CAdapter adapter) { argument
55 this.collection = collection;
62 return collection;
87 if (collection != that.collection) return false;
98 result = 29 * result + (collection ? 1 : 0);
H A DCElementPropertyInfo.java86 public CElementPropertyInfo(String name, CollectionMode collection, ID id, MimeType expectedMimeType, XSComponent source, argument
88 super(name, collection.col, source, customizations, locator);
92 this.isValueList = collection.val;
129 // in XJC, we never recognize a nillable collection pattern, so this is always false.
134 // in XJC, we never recognize a nillable collection pattern, so this is always false.
H A DCPropertyInfo.java105 protected CPropertyInfo(String name, boolean collection, XSComponent source, argument
113 this.isCollection = collection;
248 * When this property is a collection, this method returns true
249 * if items in the collection is unboxable. Obviously, the collection
301 // so any collection type always need @XmlSchemaType
H A DCReferencePropertyInfo.java71 public CReferencePropertyInfo(String name, boolean collection, boolean required, boolean isMixed, XSComponent source, argument
73 super(name, (collection||isMixed) && (!dummy), source, customizations, locator);
211 // in XJC, we never recognize a nillable collection pattern, so this is always false.
216 // in XJC, we never recognize a nillable collection pattern, so this is always false.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/reflect/
H A DLister.java110 * the type of the field that stores the collection
252 * {@link Lister} for a collection
257 * Sometimes we need to create a new instance of a collection.
266 public ListIterator iterator(T collection, XMLSerializer context) { argument
267 final Iterator itr = collection.iterator();
279 T collection = acc.get(bean);
280 if(collection==null) {
281 collection = ClassFactory.create(implClass);
283 acc.set(bean,collection);
285 collection
289 addToPack(T collection, Object o) argument
293 endPacking( T collection, BeanT bean, Accessor<BeanT,T> acc ) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DDefaultMXBeanMappingFactory.java307 /* Make the converter for an array type, or a collection such as
658 throw invalidObjectException("Cannot create collection", e);
1430 static void mustBeComparable(Class<?> collection, Type element) argument
1436 collection.getName() + " does not implement " +

Completed in 328 milliseconds