Searched refs:scanner (Results 1 - 10 of 10) sorted by relevance

/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/annotation/introspection/
H A DConstantPoolInfo.java64 private AnnotationScanner scanner = null; field in class:ConstantPoolInfo
67 public ConstantPoolInfo(AnnotationScanner scanner) { argument
68 this.scanner = scanner;
99 if (scanner.isAnnotation(stringValue)) {
/glassfish-3.1.2/common/annotation-framework/src/main/java/org/glassfish/apf/impl/
H A DProcessingContextImpl.java58 protected Scanner scanner; field in class:ProcessingContextImpl
115 return scanner;
117 public void setProcessingInput(Scanner scanner) { argument
118 this.scanner = scanner;
H A DAnnotationProcessorImpl.java128 Scanner<Object> scanner = ctx.getProcessingInput();
132 for (Class c : scanner.getElements()) {
143 * particular context rather than when they are picked up by the scanner.
164 Scanner scanner = ctx.getProcessingInput();
177 info = scanner.getComponentInfo(c);
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/util/
H A DAnnotationDetector.java76 protected final AnnotationScanner scanner; field in class:AnnotationDetector
78 public AnnotationDetector(AnnotationScanner scanner) { argument
79 this.scanner = scanner;
80 ConstantPoolInfo poolInfo = new ConstantPoolInfo(scanner);
109 // force populating the annotations field in the scanner
110 scanner.isAnnotation("foo");
112 Set<String> annotations = scanner.getAnnotations();
H A DConnectorAnnotationDetector.java65 public ConnectorAnnotationDetector(AnnotationScanner scanner) { argument
66 super(scanner);
/glassfish-3.1.2/web/web-embed/impl/src/main/java/org/glassfish/web/embed/impl/
H A DEmbeddedWebArchivist.java66 private final ModuleScanner scanner = new ModuleScanner() { field in class:EmbeddedWebArchivist
125 ModuleScanner scanner,
131 return super.processAnnotations(bundleDesc, this.scanner, archive);
133 return super.processAnnotations(bundleDesc, scanner, archive);
124 processAnnotations(RootDeploymentDescriptor bundleDesc, ModuleScanner scanner, ReadableArchive archive) argument
/glassfish-3.1.2/common/annotation-framework/src/main/java/org/glassfish/apf/
H A DProcessingContext.java66 * @return scanner instance
85 public void setProcessingInput(Scanner scanner); argument
/glassfish-3.1.2/ejb/ejb-connector/src/main/java/org/glassfish/ejb/deployment/archivist/
H A DEjbInWarArchivist.java82 Holder<EjbInWarScanner> scanner; field in class:EjbInWarArchivist
117 * Returns the scanner for this archivist, usually it is the scanner registered
124 return scanner.get();
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/archivist/
H A DWebArchivist.java362 ModuleScanner scanner = getScanner();
363 if (scanner instanceof WarScanner) {
364 ((WarScanner)scanner).setScanOtherLibraries(true);
365 readAnnotations(archive, descriptor, localExtensions, scanner);
H A DArchivist.java434 ModuleScanner scanner)
439 if (scanner == null) {
440 scanner = getScanner();
442 ProcessingResult result = processAnnotations(descriptor, scanner, archive);
495 * Returns the scanner for this archivist, usually it is the scanner regitered
502 Scanner scanner = null;
504 scanner = habitat.getComponent(Scanner.class, getModuleType().toString());
505 if (scanner==null || !(scanner instanceo
432 readAnnotations(ReadableArchive archive, T descriptor, Map<ExtensionsArchivist, RootDeploymentDescriptor> extensions, ModuleScanner scanner) argument
531 processAnnotations(RootDeploymentDescriptor bundleDesc, ModuleScanner scanner, ReadableArchive archive) argument
[all...]

Completed in 78 milliseconds