Ejemplo n.º 1
0
 def get_java_type(self):
     if not self.type in pg2javaMap and not self.type in pg2javaMapNotNull:
         return java.camel_case(self.type)
     elif self.isNullable:
         return pg2javaMap[self.type]
     else:
         return pg2javaMapNotNull[self.type]
Ejemplo n.º 2
0
 def get_java_type(self):
     if not self.type in pg2javaMap and not self.type in pg2javaMapNotNull:
         return java.camel_case(self.type)
     elif self.isNullable:
         return pg2javaMap[self.type]
     else:
         return pg2javaMapNotNull[self.type]
Ejemplo n.º 3
0
 def getClassName(self):
     return java.camel_case(self.name)
Ejemplo n.º 4
0
 def getClassName(self):
     return java.camel_case(self.name)