• R/O
  • HTTP
  • SSH
  • HTTPS

标签
No Tags

Frequently used words (click to add to your profile)

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

File Info

Rev. 86e26ecde9d36b0074e6fb8a2a2b26250bb81d51
大小 664 字节
时间 2022-11-30 01:06:13
作者 yoshy
Log Message

[MOD] UserDialogProxy の名前空間を UI 配下から UI.Dialog 配下に移動
[FIX] JsonHelper.ToJsonString のメソッド名が破損していた不具合を修正
[MOD] キャプション書式化機能でキャプションの取得と書式化を行う機能の区別を明確にした
[MOD] MessageRepository の基底処理を CleanAuLait 側と同様に AbstractMessageRepository クラスに分割
[ADD] CleanAuLait 側で追加された機能の取り込み(PathHelper, DateTimeHelper, ログ系)

Content

using System;

namespace CleanAuLait48.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);
    }
}