1 21 22 package org.apache.derby.impl.sql.compile; 23 24 30 public class TriggerReferencingStruct 31 { 32 public String identifier; 33 public boolean isRow; 34 public boolean isNew; 35 36 public TriggerReferencingStruct 37 ( 38 boolean isRow, 39 boolean isNew, 40 String identifier 41 ) 42 { 43 this.isRow = isRow; 44 this.isNew = isNew; 45 this.identifier = identifier; 46 } 47 48 public String toString() 49 { 50 return (isRow ? "ROW " : "TABLE ")+(isNew ? "new: " : "old: ") + identifier; 51 } 52 } 53 | Popular Tags |