2004-05-25 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / nunit20 / util / GuiOptions.cs
1 #region Copyright (c) 2002-2003, James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole, Philip A. Craig
2 /************************************************************************************
3 '
4 ' Copyright  2002-2003 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
5 ' Copyright  2000-2002 Philip A. Craig
6 '
7 ' This software is provided 'as-is', without any express or implied warranty. In no 
8 ' event will the authors be held liable for any damages arising from the use of this 
9 ' software.
10
11 ' Permission is granted to anyone to use this software for any purpose, including 
12 ' commercial applications, and to alter it and redistribute it freely, subject to the 
13 ' following restrictions:
14 '
15 ' 1. The origin of this software must not be misrepresented; you must not claim that 
16 ' you wrote the original software. If you use this software in a product, an 
17 ' acknowledgment (see the following) in the product documentation is required.
18 '
19 ' Portions Copyright  2002-2003 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
20 ' or Copyright  2000-2002 Philip A. Craig
21 '
22 ' 2. Altered source versions must be plainly marked as such, and must not be 
23 ' misrepresented as being the original software.
24 '
25 ' 3. This notice may not be removed or altered from any source distribution.
26 '
27 '***********************************************************************************/
28 #endregion
29
30 namespace NUnit.Util
31 {
32         using System;
33         using Codeblast;
34
35         public class GuiOptions : CommandLineOptions
36         {
37                 private bool isInvalid = false; 
38
39                 [Option(Short="?", Description = "Display help")]
40                 public bool help = false;
41
42                 [Option(Description = "Project configuration to load")]
43                 public string config;
44
45                 [Option(Description = "Suppress loading of last project")]
46                 public bool noload;
47
48                 public GuiOptions(String[] args) : base(args) 
49                 {}
50
51                 protected override void InvalidOption(string name)
52                 { isInvalid = true; }
53
54                 public string Assembly
55                 {
56                         get 
57                         {
58                                 return (string)Parameters[0];
59                         }
60                 }
61
62                 public bool IsAssembly
63                 {
64                         get 
65                         {
66                                 return ParameterCount == 1;
67                         }
68                 }
69
70                 public bool Validate()
71                 {
72                         return (NoArgs || ParameterCount <= 1) && !isInvalid;
73                 }
74         }
75 }