Ejemplo n.º 1
0
    public ArgumentLink(VClass toClass, VConstructor con, OtherClassLink otherClassLink) {
      this.toClass = toClass;
      this.otherClassLink = otherClassLink;
      // this.constructor = constructor;

      String str = "to" + toClass.getRealName().replace('.', '_');
      arg = new VArgument(str, str, toClass, false, false, con, this);

      cba = new ConstructorBlockArgs(con, this);

      if (con.getBlock() != null) con.getBlock().addMod(cba);
    }