Method: Muml_Class#struts_jspEdit_generateJavascript_operations
- Defined in:
- lib/ontomde-java/struts/jsp_edit_js.rb
#struts_jspEdit_generateJavascript_operations ⇒ Object
28 29 30 31 32 33 34 35 36 37 38 39 |
# File 'lib/ontomde-java/struts/jsp_edit_js.rb', line 28 def struts_jspEdit_generateJavascript_operations umlx_ownedAndInheritedOperation.each {|biz| next unless biz.umlx_businessMethod? f=biz.java_Name write(%{ function #{biz.js_Name}() { document.forms[0].#{Muml_Class::STRUTS_DISPATCH_FIELD_NAME}.value="#{f}"; document.forms[0].submit(); } }) } end |