Package anvil.script

Examples of anvil.script.InterfaceRef


  }

  final public void InterfaceReference(Location location, List interfaces) throws ParseException {
  LinkNode link;
    link = EntityReference(location);
      interfaces.add(new InterfaceRef(link));
  }
View Full Code Here


      Name[] names = Grammar.parseDottedNames(parser, location, s);
      if (names != null) {
        int n = names.length;
        _interfaces = new InterfaceRef[n];
        for(int i=0; i<n; i++) {
          _interfaces[i] = new InterfaceRef(new LinkNode(this, location, names[i]));
        }
      } else {
        init = false;
      }
    }
View Full Code Here

TOP

Related Classes of anvil.script.InterfaceRef

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.