/* * Copyright 2009 www.scribble.org * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ package org.scribble.ast; import org.antlr.runtime.tree.CommonTree; import org.scribble.del.ScribDel; import org.scribble.main.ScribbleException; import org.scribble.visit.AstVisitor; import org.scribble.visit.Substitutor; /** * This is the generic object from which all Scribble model objects * are derived. */ public interface ScribNode { // Returns a deep clone but with fresh dels (i.e. dels not copied) // i.e. recursively using AstFactory to rebuild the whole subtree // Cf. node specific reconstructs, retain (i.e. share) the existing del -- so dels must be immutable (except for Envs) ScribNode clone(); ScribDel del(); ScribNode del(ScribDel del); ScribNode accept(AstVisitor nv) throws ScribbleException; ScribNode visitChildren(AstVisitor nv) throws ScribbleException; // Simple operations, not worth doing del enter/leave pattern for // Rely on visitChildren reconstruction pattern to do recursive reconstruction ScribNode substituteNames(Substitutor subs); // Cf. LInteractionNode.inferLocalChoiceSubject CommonTree getSource(); // Previously: for parsed entities, null if not parsed // Now: for the original parsed entity for error blaming; should not be null unless a "purely generated" entity }