mirror of
https://github.com/moparisthebest/keepass2android
synced 2024-11-13 21:15:09 -05:00
35 lines
465 B
C#
35 lines
465 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
using keepass2android;
|
|||
|
|
|||
|
namespace Kp2aUnitTests
|
|||
|
{
|
|||
|
class ProgressDialogStub : IProgressDialog
|
|||
|
{
|
|||
|
public void SetTitle(string title)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public void SetMessage(string getResourceString)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public void Dismiss()
|
|||
|
{
|
|||
|
Dismissed = true;
|
|||
|
}
|
|||
|
|
|||
|
public void Show()
|
|||
|
{
|
|||
|
Showed = true;
|
|||
|
}
|
|||
|
|
|||
|
protected bool Showed { get; set; }
|
|||
|
|
|||
|
public bool Dismissed { get; set; }
|
|||
|
}
|
|||
|
}
|