| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

Perl VBのプロパティプロシージャを生成

提供: MyMemoWiki
2020年2月15日 (土) 08:05時点におけるPiroto (トーク | 投稿記録)による版
ナビゲーションに移動 検索に移動

Perl VBのプロパティプロシージャを生成

  1. #プロパティ
  2. @props = (
  3. "fieldName",
  4. "fieldLogicalName",
  5. "dataType",
  6. "byteSize",
  7. "dataLength",
  8. "notes"
  9. );
  10. #プロパティの型
  11. %types = (
  12. "fieldName" =>"String",
  13. "fieldLogicalName" =>"String",
  14. "dataType" =>"String",
  15. "byteSize" =>"String",
  16. "dataLength" =>"String",
  17. "notes" =>"String"
  18. );
  19. #プロパティのコメント
  20. %comments = (
  21. "fieldName" =>"列名(物理)",
  22. "fieldLogicalName" =>"列名(論理)",
  23. "dataType" =>"データ型",
  24. "byteSize" =>"バイト数",
  25. "dataLength" =>"桁数",
  26. "notes" =>"備考"
  27. );
  28.  
  29. $prop_cnt = @props;
  30. for ($i=0; $i<$prop_cnt; $i++) {
  31. $prop_name = @props[$i];
  32. $prop_type = $types{$prop_name};
  33. $comment = $comments{$prop_name};
  34. print "Private m_$prop_name \t\t\tAs $prop_type\t'$comment\n";
  35. }
  36. print "\n\n";
  37. for ($i=0; $i<$prop_cnt; $i++) {
  38. $prop_name = @props[$i];
  39. $prop_type = $types{$prop_name};
  40. $comment = $comments{$prop_name};
  41.  
  42. print "'$comment を取得する\n";
  43. print "Public Property Get $prop_name() As $prop_type\n";
  44. print " $prop_name = m_$prop_name\n";
  45. print "End Property\n";
  46.  
  47. print "'$comment を設定する\n";
  48. print "Public Property Let $prop_name(ByVal new_$prop_name As $prop_type)\n";
  49. print " m_$prop_name = new_$prop_name\n";
  50. print "End Property\n";
  51. }