Package com.foundationdb.ais.protobuf.TestProtobuf

Examples of com.foundationdb.ais.protobuf.TestProtobuf.TestMessage


    public TestPersistitStorageDescription readProtobuf(Storage pbStorage, HasStorage forObject, TestPersistitStorageDescription storageDescription) {
        if (storageDescription == null) {
            storageDescription = new TestPersistitStorageDescription(forObject, identifier);
        }
        TestMessage testMessage = pbStorage.getExtension(TestMessage.msg);
        storageDescription.setName(testMessage.getName());
        if (testMessage.hasOption()) {
            storageDescription.setOption(testMessage.getOption());

        }
        return storageDescription;
    }
View Full Code Here

TOP

Related Classes of com.foundationdb.ais.protobuf.TestProtobuf.TestMessage

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.