~charlie.poole/nunit-project-editor/trunk

« back to all changes in this revision

Viewing changes to src/editor/PropertyEditor/AssemblyList.cs

  • Committer: Akrem Osman
  • Date: 2012-12-01 23:40:49 UTC
  • Revision ID: akrem.osman@gmail.com-20121201234049-4nsxi3ihyeynzyqj
Add Up/Down logic for the assembly list

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
            }
88
88
        }
89
89
 
 
90
        public XmlNode NextAssembly()
 
91
        {
 
92
            return configNode.NextSibling;
 
93
        }
 
94
 
 
95
        public XmlNode PreviousAssembly()
 
96
        {
 
97
            return configNode.PreviousSibling;
 
98
        }
 
99
 
90
100
        public IEnumerator<string> GetEnumerator()
91
101
        {
92
102
            foreach (XmlNode node in AssemblyNodes)