Class: DatatypeMappingFile

Inherits:
DatatypeMapping show all
Includes:
Singleton
Defined in:
lib/ontomde-uml2/UMLdatatypeMapping.rb,
lib/ontomde-uml2/kb/datatypeMapping.rb

Constant Summary collapse

MATCHING_UML_NAME =
["file"]

Instance Attribute Summary

Attributes inherited from DatatypeMapping

#maxStringLength

Instance Method Summary collapse

Methods inherited from DatatypeMapping

#getMapping, #getMappings, #getValidationRegexp, #initialize, #prot_getProtegeType

Constructor Details

This class inherits a constructor from DatatypeMapping

Instance Method Details

#appliesTo?(datatype) ⇒ Boolean

Returns:

  • (Boolean)


227
228
229
230
231
232
# File 'lib/ontomde-uml2/UMLdatatypeMapping.rb', line 227

def appliesTo?(datatype)
  return false unless datatype.kind_of?(Muml_DataType)
  return true if MATCHING_UML_NAME.include?(datatype.uml_name_one)
  #return datatype.struts_isBlob?
  #return ["image"].include?(datatype.java_qualifiedName)
end

#getHelpObject



234
235
236
# File 'lib/ontomde-uml2/UMLdatatypeMapping.rb', line 234

def getHelp
  super 
end