1 21 22 package org.continuent.sequoia.controller.semantic; 23 24 30 public class TriggerSemantic extends AbstractSemantic 31 { 32 private String triggerName; 33 private String onTableOrView; 34 35 41 public TriggerSemantic(String triggerName, String onTableOrView) 42 { 43 this.triggerName = triggerName; 44 this.onTableOrView = onTableOrView; 45 } 46 47 52 public String getOnTableOrView() 53 { 54 return onTableOrView; 55 } 56 57 62 public String getTriggerName() 63 { 64 return triggerName; 65 } 66 67 } 68 | Popular Tags |