• R/O
  • HTTP
  • SSH
  • HTTPS

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

File Info

Rev. c3a256ccb4a9a5823695d2237d31680b12931560
Size 647 bytes
Time 2022-11-29 23:54:33
Author yoshy
Log Message

[MOD] キャプション書式化機能でキャプションの取得と書式化を行う機能の区別を明確にした

Content

namespace CleanAuLait.Core.Resource
{
    public interface ICaptionFormatter
    {
        string GetDefaultCaption();
        string GetCaption(string captionKey);
        string GetInfoCaption();
        string FormatInfoCaption(string captionKey);
        string GetWarnCaption();
        string FormatWarnCaption(string captionKey);
        string GetErrorCaption();
        string FormatErrorCaption(string captionKey);
        string GetConfirmCaption();
        string FormatConfirmCaption(string captionKey);
        string GetExceptionCaption(Exception e);
        string FormatExceptionCaption(Exception e, string captionKey);
    }
}