Package net.sf.joafip.store.entity.proxy

Examples of net.sf.joafip.store.entity.proxy.MethodId


      final OpcodeNodeMethod currentOpcodeNode) {
    ownedMethodCallOfOtherInstanceList.add(currentOpcodeNode);
  }

  public void addPrivateMethodName(final String methodName, final String desc) {
    privateMethodSet.add(new MethodId(methodName, desc));
  }
View Full Code Here


  }

  public List<OpcodeNodeMethod> getOtherInstancePrivateCallList() {
    final List<OpcodeNodeMethod> list = new LinkedList<OpcodeNodeMethod>();
    for (OpcodeNodeMethod opcodeNodeMethod : ownedMethodCallOfOtherInstanceList) {
      final MethodId key =
      /**/new MethodId(opcodeNodeMethod.getMethodName(),// NOPMD
          opcodeNodeMethod.getDesc());
      if (privateMethodSet.contains(key)) {
        list.add(opcodeNodeMethod);
      }
    }
View Full Code Here

TOP

Related Classes of net.sf.joafip.store.entity.proxy.MethodId

Copyright © 2018 www.massapicom. 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.