Package rocket.serialization.rebind.read

Examples of rocket.serialization.rebind.read.SetFieldTemplatedFile


    Checker.notNull("parameter:reader", reader);
    Checker.notNull("parameter:field", field);

    final GeneratorContext context = this.getGeneratorContext();

    final SetFieldTemplatedFile body = new SetFieldTemplatedFile();
    body.setField(field);

    final NewMethod method = reader.newMethod();
    method.setAbstract(false);
    method.setBody(body);
    method.setFinal(true);
View Full Code Here

TOP

Related Classes of rocket.serialization.rebind.read.SetFieldTemplatedFile

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.