Skip to content

Commit

Permalink
Updated primitives
Browse files Browse the repository at this point in the history
  • Loading branch information
fehguy committed May 26, 2012
1 parent 16a1e2d commit dc8ca5d
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions src/main/scala/JavaCodegen.scala
Expand Up @@ -7,11 +7,14 @@ object JavaCodegen extends JavaCodegen {
}

class JavaCodegen extends BasicGenerator {
override def defaultIncludes = Set("NSInteger",
"int",
"long",
"String")

override def defaultIncludes = Set(
"double",
"int",
"long",
"float",
"String",
"boolean")

override def typeMapping = Map(
"Boolean" -> "boolean",
"Int" -> "int",
Expand Down

0 comments on commit dc8ca5d

Please sign in to comment.