Example #1
0
        public bool Equals(IUmlObject obj)
        {
            if (obj == null)
            {
                return(false);
            }

            return(Name == obj.Name);
        }
Example #2
0
 public int CompareTo(IUmlObject y)
 {
     return(String.Compare(name, y.Name));
 }
Example #3
0
 public int CompareTo(IUmlObject y)
 {
     return String.Compare (name, y.Name);
 }
Example #4
0
        public bool Equals(IUmlObject obj)
        {
            if (obj == null)
                return false;

            return Name == obj.Name;
        }
Example #5
0
 public Inheritance(IUmlObject baseobj, IUmlObject derivedobj)
 {
     Base    = baseobj;
     Derived = derivedobj;
 }