Class: JavaMappingURL

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

Constant Summary collapse

MATCHING_UML_NAME =
["URL","URI"]

Instance Attribute Summary

Attributes inherited from JavaMapping

#maxStringLength

Instance Method Summary collapse

Methods inherited from JavaMappingText

#getJavaType

Methods inherited from JavaMapping

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

Constructor Details

This class inherits a constructor from JavaMapping

Instance Method Details

#appliesTo?(datatype) ⇒ Boolean

MATCHING_JAVA_NAME=[]

Returns:

  • (Boolean)


338
339
340
341
342
# File 'lib/ontomde-uml2-java/javaMapping.rb', line 338

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