Searched defs:decl (Results 1 - 3 of 3) sorted by relevance

/glassfish-3.1.2/persistence/cmp/support-ejb/src/main/java/com/sun/jdo/spi/persistence/support/ejb/ejbqlc/
H A DSymbolTable.java66 * The specified decl object provides details anbout the declaration.
71 * @param decl new definition of identifier
75 public Object declare(String ident, Object decl) argument
79 symbols.put(ident.toUpperCase(), decl);
/glassfish-3.1.2/ha/ha-apt/src/main/java/org/glassfish/ha/store/apt/generators/
H A DAbstractGenerator.java87 protected void addAttribute(String attrName, TypeMirror decl) { argument
89 types.put(attrName, decl);
/glassfish-3.1.2/admin/runtime/rtapt/apt/src/main/java/org/glassfish/admin/runtime/apt/
H A DRuntimeMgmtAptProcessor.java85 for (TypeDeclaration decl : env.getSpecifiedTypeDeclarations()) {
87 msg.printNotice("type = " + decl.getQualifiedName());
88 msg.printNotice("package = " + decl.getPackage().getQualifiedName());
90 generateMBeanInfo(decl);
94 private void generateMBeanInfo(TypeDeclaration decl) { argument
98 if (decl.getAnnotation(MBean.class) == null) return;
100 pojoName = decl.getSimpleName();
101 pojoClassName = decl.getQualifiedName();
102 packageName = decl.getPackage().getQualifiedName();
109 for (MethodDeclaration mdecl : decl
[all...]

Completed in 645 milliseconds