Package gap.service.od

Examples of gap.service.od.PackageDescriptor


    }
    public PackageDescriptor getPackage(){
        return this.pack;
    }
    public String getPackageClassName(){
        final PackageDescriptor pack = this.pack;
        if (null != pack){
            final String pkg = pack.getName();
            if (null != pkg){

                return pkg+'.'+this.name;
            }
        }
View Full Code Here


            return null;
    }
    public final static String PackageName(ClassDescriptor cd)
        throws ODStateException
    {
        PackageDescriptor pd = PackageFor(cd);
        if (null != pd)
            return pd.getName();
        else
            throw new ODStateException(cd,"The object data model requires a package name.");
    }
View Full Code Here

TOP

Related Classes of gap.service.od.PackageDescriptor

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.