// コンストラクタ

		/// <summary>
		/// 属性一覧表示のためのアクションのインスタンスを開始します。
		/// </summary>
		public HtmlRefViewAttributeList(HatomaruHtmlRef model, AbsPath path) : base(model, path){
			Data = model;
			myPath = myModel.BasePath.Combine(Id);
		}
// コンストラクタ

		/// <summary>
		/// 属性一覧表示のためのアクションのインスタンスを開始します。
		/// </summary>
		public HtmlRefViewElementGroupList(HatomaruHtmlRef model, AbsPath path) : base(model, path){
			Data = model;
			myPath = myModel.BasePath.Combine(Id);
		}
// コンストラクタ

		/// <summary>
		/// 要素グループ表示のためのアクションのインスタンスを開始します。
		/// </summary>
		public HtmlRefViewElementGroup(HatomaruHtmlRef model, AbsPath path, string id) : base(model, path){
			Data = model;
			myPath = myModel.BasePath.Combine(HtmlRefViewElementGroupList.Id, id);
			myId = id;
		}
예제 #4
0
// コンストラクタ

		/// <summary>
		/// リファレンスの目次表示のためのアクションのインスタンスを開始します。
		/// </summary>
		public HtmlRefViewIndex(HatomaruHtmlRef model, AbsPath path) : base(model, path){
			myPath = myModel.BasePath;
		}