codeviz

codeviz is a simple code generator for rust, specifically written for use in reproto.

This project is inspired by JavaPoet (https://github.com/square/javapoet)

Example

```rust

[macro_use]

extern crate codeviz;

use codeviz::java::*;

fn main() { let stringtype = Type::class("java.lang", "String"); let listtype = Type::class("java.util", "List"); let jsoncreatortype = Type::class("com.fasterxml.jackson.annotation", "JsonCreator"); let listofstrings = listtype.witharguments(vec![&string_type]);

let valuesfield = FieldSpec::new(javamods![Modifier::Private, Modifier::Final], &listofstrings, "values");

let valuesargument = ArgumentSpec::new(javamods![Modifier::Final], &listofstrings, "values");

let mut constructor = ConstructorSpec::new(javamods![Modifier::Public]); constructor.pushannotation(AnnotationSpec::new(jsoncreatortype)); constructor.pushargument(&valuesargument); constructor.push(javastmt!["this.values = ", valuesargument]);

let mut valuesgetter = MethodSpec::new(javamods![Modifier::Public], "getValues"); valuesgetter.returns(&listofstrings); valuesgetter.push(javastmt!["return this.", &valuesfield]);

let mut class = ClassSpec::new(javamods![Modifier::Public], "Test"); class.pushfield(&valuesfield); class.pushconstructor(&constructor); class.pushmethod(&valuesgetter);

let mut file = FileSpec::new("se.tedro"); file.push_class(&class);

let result = file.format(); } ```