Examples of ConstructorEntry


Examples of cuchaz.enigma.mapping.ConstructorEntry

        fieldEntry.getName()
      );
    }
    else if( thing instanceof ConstructorEntry )
    {
      ConstructorEntry constructorEntry = (ConstructorEntry)thing;
      return (T)new ConstructorEntry(
        renameClassesInThing( renames, constructorEntry.getClassEntry() ),
        constructorEntry.getSignature()
      );
    }
    else if( thing instanceof MethodEntry )
    {
      MethodEntry methodEntry = (MethodEntry)thing;
View Full Code Here

Examples of cuchaz.enigma.mapping.ConstructorEntry

          addReference( reference );
        }
      }
      for( CtConstructor constructor : c.getDeclaredConstructors() )
      {
        ConstructorEntry constructorEntry = new ConstructorEntry( m_classEntry, constructor.getSignature() );
        for( EntryReference<BehaviorEntry,BehaviorEntry> reference : index.getBehaviorReferences( constructorEntry ) )
        {
          addReference( reference );
        }
      }
View Full Code Here

Examples of cuchaz.enigma.mapping.ConstructorEntry

      {
        behaviorEntry = new MethodEntry( classEntry, behavior.getMethodInfo().getName(), behavior.getSignature() );
      }
      else if( behavior instanceof CtConstructor )
      {
        behaviorEntry = new ConstructorEntry( classEntry, behavior.getSignature() );
      }
      else
      {
        throw new Error( "Unsupported behavior type: " + behavior.getClass().getName() );
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.