Package net.sf.rej.gui.structure

Examples of net.sf.rej.gui.structure.InterfaceNode


    } else if (node instanceof SuperClassNode) {
      return this.offsets.get(ClassFile.OffsetTag.SUPER_CLASS);
    } else if (node instanceof InterfacesNode) {
      return this.offsets.get(ClassFile.OffsetTag.INTERFACE_DATA);
    } else if (node instanceof InterfaceNode) {
      InterfaceNode iNode = (InterfaceNode) node;
      return this.offsets.get(iNode.getInterface());
    } else if (node instanceof FieldsNode) {
      return this.offsets.get(ClassFile.OffsetTag.FIELD_DATA);
    } else if (node instanceof FieldNode) {
      FieldNode fNode = (FieldNode) node;
      return this.offsets.get(fNode.getField());
View Full Code Here

TOP

Related Classes of net.sf.rej.gui.structure.InterfaceNode

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.