You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
635 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using ICSharpCode.Core;
namespace Mesnac.PlugIn.Pad
{
public class PadDoozer : IDoozer
{
/// <summary>
/// 条件属性
/// </summary>
public bool HandleConditions
{
get { return false; }
}
/// <summary>
/// 构建项
/// </summary>
/// <param name="args">构建项参数</param>
/// <returns>返回构建的对象</returns>
public object BuildItem(BuildItemArgs args)
{
return new PadDescriptor(args.Codon);
}
}
}