Searched defs:classNames (Results 1 - 4 of 4) sorted by relevance

/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/ejb/
H A DContainerTransactionStyle3.java235 /** returns an array of business methods that are collected from set classNames*/
236 private Method[] getBusinessMethods(Set<String> classNames, Method[] intfMethods) { argument
237 if(!classNames.isEmpty()) {
240 for (String clsName : classNames) {
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/apiscan/classfile/
H A DBCELClassFile.java81 private Set<String> classNames; field in class:BCELClassFile
123 if (classNames == null) {
124 classNames = new HashSet<String>();//lazy instantiation
130 classNames = Collections.unmodifiableSet(classNames);
132 return classNames;
136 if (classNames == null) {
139 HashSet<String> extClassNames = new HashSet<String>(classNames.size());
140 for (Iterator i = classNames.iterator(); i.hasNext();) {
267 classNames
[all...]
/glassfish-3.1.2/persistence/cmp/model/src/main/java/com/sun/jdo/api/persistence/model/
H A DModel.java449 * @param classNames a collection of fully qualified class names
451 protected void removeResourcesFromCaches (Collection classNames) argument
453 if (classNames == null)
458 for (Iterator i = classNames.iterator(); i.hasNext();)
/glassfish-3.1.2/tests/community/web/jruby/helloapp/public/javascripts/
H A Dprototype.js1289 classNames: function(element) {
1305 Element.classNames(element).add(className);
1311 Element.classNames(element).remove(className);
1317 Element.classNames(element)[element.hasClassName(className) ? 'remove' : 'add'](className);
1747 this.params = {classNames: []};
1771 case '.': params.classNames.push(clause); break;
1791 if ((clause = params.classNames).length > 0)

Completed in 41 milliseconds