示例#1
0
  void acceptChildren(Visitor v) throws StandardException {
    super.acceptChildren(v);

    if (storageFormat != null) {
      storageFormat = (StorageFormatNode) storageFormat.accept(v);
    }
  }
示例#2
0
  public void printSubNodes(int depth) {
    super.printSubNodes(depth);

    if (storageFormat != null) {
      printLabel(depth, "storageFormat: ");
      storageFormat.treePrint(depth + 1);
    }
  }