Package protobuf.lang.psi.api.declaration

Examples of protobuf.lang.psi.api.declaration.PbPackageDef


     * Gets the package name from the package declaration.
     * @return the package name, if present, or the empty string.
     */
    @Override
    public String getPackageName() {
        final PbPackageDef packageDef = getPackageDefinition();
        return packageDef != null ? packageDef.getPackageName() : "";
    }
View Full Code Here

TOP

Related Classes of protobuf.lang.psi.api.declaration.PbPackageDef

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.