Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="JdtRemove"/> class.
 /// </summary>
 public JdtRemove()
 {
     // Remove only accepts the path attribute
     this.attributeValidator = new JdtAttributeValidator(JdtAttributes.Path);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="JdtMerge"/> class.
 /// </summary>
 public JdtMerge()
 {
     // Merge accepts path and value attributes
     this.attributeValidator = new JdtAttributeValidator(JdtAttributes.Path, JdtAttributes.Value);
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="JdtRename"/> class.
 /// </summary>
 public JdtRename()
 {
     // Rename accepts the path and value attributes
     this.attributeValidator = new JdtAttributeValidator(JdtAttributes.Path, JdtAttributes.Value);
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="JdtReplace"/> class.
 /// </summary>
 public JdtReplace()
 {
     this.attributeValidator = new JdtAttributeValidator(JdtAttributes.Path, JdtAttributes.Value);
 }