Class: JavaMappingBoolean

Inherits:
JavaMapping show all
Includes:
Singleton
Defined in:
lib/ontomde-uml2-java/javaMapping.rb

Constant Summary collapse

MATCHING_UML_NAME =
["Boolean","boolean"]
STRUTS_BEAN_KEY =

name of the key used by struts to referece current bean in session.

"org.apache.struts.taglib.html.BEAN"

Instance Attribute Summary

Attributes inherited from JavaMapping

#maxStringLength

Instance Method Summary collapse

Methods inherited from JavaMapping

#getGroovyCast, #getMappings, #getTemplate, #getValidationRegexp, #initialize

Constructor Details

This class inherits a constructor from JavaMapping

Instance Method Details

#appliesTo?(datatype) ⇒ Boolean

MATCHING_JAVA_NAME=[]

Returns:

  • (Boolean)


183
184
185
186
187
# File 'lib/ontomde-uml2-java/javaMapping.rb', line 183

def appliesTo?(datatype)
  return true if MATCHING_UML_NAME.include?(datatype.uml_name_one)
  #	return true if MATCHING_JAVA_NAME.include?(datatype.java_qualifiedName)
  return false
end

#getJavaTypeObject



194
195
196
# File 'lib/ontomde-uml2-java/javaMapping.rb', line 194

def getJavaType
  return "boolean"
end