Package org.xdoclet.plugin.ejb

Examples of org.xdoclet.plugin.ejb.EjbJavaType


                    if (pkExtends != null) {
                        // We need to test if so far we haven't collected any properties to allow to set top class
                        // If we don't check this, we could be loosing primary key's properties
                        // NOTE: xdoclet1 allowed this, although it generates non compiling class
                        if (current.isEmpty() && current.getParent() == null) {
                            current.setType(new EjbJavaType(pkExtends));
                            current = new PkClass(current);
                        } else {
                            throw ejbUtils.getErrorWithTagLocation(pkTag,
                                "Can't set \"extends\" property without loosing current primary key properties: " +
                                current);
View Full Code Here

TOP

Related Classes of org.xdoclet.plugin.ejb.EjbJavaType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.