Exemple #1
0
 internal ClassDefinition(ClassReference cref)
     : this()
 {
     Fullname  = cref.Fullname;
     Namespace = cref.Namespace;
     Name      = cref.Name;
 }
Exemple #2
0
 internal ClassDefinition(ClassReference cref)
     : this()
 {
     Fullname = cref.Fullname;
     Namespace = cref.Namespace;
     Name = cref.Name;
 }
Exemple #3
0
 public ClassReference Import(ClassReference cref)
 {
     return((ClassReference)Import(cref, true));
 }
Exemple #4
0
 public bool Equals(ClassReference other)
 {
     return(base.Equals(other) &&
            Fullname == other.Fullname);
 }
Exemple #5
0
 public ClassReference Import(ClassReference cref)
 {
     return (ClassReference)Import(cref, true);
 }
Exemple #6
0
 internal ClassDefinition(Dex dexSource, ClassReference cref) : this(dexSource)
 {
     Fullname  = cref.Fullname;
     Namespace = cref.Namespace;
     Name      = cref.Name;
 }
Exemple #7
0
 public bool Equals(ClassReference other)
 {
     return base.Equals(other)
         && Fullname == other.Fullname;
 }