// コンストラクタ

		/// <summary>
		/// ジャンル表示のためのアクションのインスタンスを開始します。
		/// </summary>
		public GlossaryViewGenreList(HatomaruGlossary model, AbsPath path) : base(model, path){
			myPath = BasePath.Combine(Id);
		}
Esempio n. 2
0
// コンストラクタ

		protected GlossaryAction(HatomaruGlossary model, AbsPath path) : base(model, path){}
Esempio n. 3
0
// コンストラクタ

		/// <summary>
		/// ジャンル表示のためのアクションのインスタンスを開始します。
		/// </summary>
		public GlossaryViewGenre(HatomaruGlossary model, AbsPath path, string name) : base(model, path){
			myPath = BasePath.Combine(Id, name);
			myGenreName = name;
		}
Esempio n. 4
0
// コンストラクタ

		/// <summary>
		/// 最近の日記表示のためのアクションのインスタンスを開始します。
		/// </summary>
		public GlossaryViewList(HatomaruGlossary model, AbsPath path) : base(model, path){
			myPath = myModel.BasePath;
		}
Esempio n. 5
0
// コンストラクタ

		/// <summary>
		/// 最近の日記表示のためのアクションのインスタンスを開始します。
		/// </summary>
		public GlossaryViewWord(HatomaruGlossary model, AbsPath path, string id) : base(model, path){
			myWordId = id;
			myPath = myModel.BasePath.Combine(id);
		}