Examples of PbPackageDef


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
Copyright © 2018 www.massapi.com. 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.