Package com.google.protobuf.DescriptorProtos

Examples of com.google.protobuf.DescriptorProtos.DescriptorProto


        groupOptions.setVersion(sumVersions);
        priorFile = null;
        if (priorSet != null) {
            String rootUuid = group.getRoot().getUuid().toString();
            for (FileDescriptorProto file : priorSet.getFileList()) {
                DescriptorProto firstMessage = file.getMessageType(0);
                MessageOptions options = firstMessage.getOptions();
                if ((options != null) &&
                    (options.hasExtension(TableOptions.fdbsql))) {
                    TableOptions tableOptions = options.getExtension(TableOptions.fdbsql);
                    if (tableOptions.getUuid().equals(rootUuid)) {
                        priorFile = file;
View Full Code Here


                type = fieldDescriptor.getTypeName();
                if ((absolutePackage != null) && type.startsWith(absolutePackage)) {
                    type = type.substring(absolutePackage.length());
                }
            }
            DescriptorProto groupDescriptor = null;
            if (fieldDescriptor.getType() == Type.TYPE_GROUP) {
                groupDescriptor = groups.get(type);
                if (groupDescriptor != null) {
                    name = type;
                    type = "group";
View Full Code Here

TOP

Related Classes of com.google.protobuf.DescriptorProtos.DescriptorProto

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.