001/* This file was generated by SableCC (http://www.sablecc.org/). */ 002 003package org.anarres.graphviz.parser.node; 004 005import org.anarres.graphviz.parser.analysis.*; 006 007@SuppressWarnings("nls") 008public final class AEdgeDefaultsStatement extends PStatement 009{ 010 011 public AEdgeDefaultsStatement() 012 { 013 // Constructor 014 } 015 016 @Override 017 public Object clone() 018 { 019 return new AEdgeDefaultsStatement(); 020 } 021 022 public void apply(Switch sw) 023 { 024 ((Analysis) sw).caseAEdgeDefaultsStatement(this); 025 } 026 027 @Override 028 public String toString() 029 { 030 return ""; 031 } 032 033 @Override 034 void removeChild(@SuppressWarnings("unused") Node child) 035 { 036 // Remove child 037 throw new RuntimeException("Not a child."); 038 } 039 040 @Override 041 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) 042 { 043 // Replace child 044 throw new RuntimeException("Not a child."); 045 } 046}