UniAspect.AspectElement.Pointcut.SetType C# (CSharp) Method

SetType() public method

public SetType ( string type ) : void
type string
return void
        public void SetType(string type)
        {
            _type = type;
        }

Usage Example

Exemplo n.º 1
0
 // TODO テストを書く
 public Pointcut DeepCopy()
 {
     var copy = new Pointcut();
     copy.SetElementType(GetPointcutType());
     copy.SetName(GetName());
     copy.SetType(GetTargetType());
     // TODO パラメータもコピーする
     foreach (var name in GetTargetName()) {
         copy.SetTarget(name);
     }
     return copy;
 }
All Usage Examples Of UniAspect.AspectElement.Pointcut::SetType