~ubuntu-branches/ubuntu/saucy/monodevelop/saucy

« back to all changes in this revision

Viewing changes to external/mono-tools/gendarme/rules/Gendarme.Rules.Correctness/graph/IEdge.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2012-05-27 18:08:20 UTC
  • mfrom: (1.8.5) (1.5.8 sid)
  • Revision ID: package-import@ubuntu.com-20120527180820-f1ub6lhg0s50wci1
Tags: 3.0.2+dfsg-3
* [fcecfe7] Fix monodevelop-core-addins.pc.in to point to actual 
  installed location of assemblies.
* [26e1a07] DebSrc 3.0 does not support Quilt's -p parameter, so 
  manually adjust the path in the patch file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * IEdge.cs: the interface graph edges must implement.
 
3
 *
 
4
 * Authors:
 
5
 *   Aaron Tomb <atomb@soe.ucsc.edu>
 
6
 *
 
7
 * Copyright (c) 2005 Aaron Tomb and the contributors listed
 
8
 * in the ChangeLog.
 
9
 *
 
10
 * This is free software, distributed under the MIT/X11 license.
 
11
 * See the included LICENSE.MIT file for details.
 
12
 **********************************************************************/
 
13
 
 
14
namespace Gendarme.Rules.Correctness {
 
15
 
 
16
public interface IEdge {
 
17
    Node Start { get; }
 
18
    Node End { get; }
 
19
}
 
20
 
 
21
}