1 5 package org.h2.bnf; 6 7 8 public class RuleHead { 9 int id; 10 String section; 11 String topic; 12 Rule rule; 13 14 RuleHead(int id, String section, String topic, Rule rule) { 15 this.id = id; 16 this.section = section; 17 this.topic = topic; 18 this.rule = rule; 19 } 20 21 public String getTopic() { 22 return topic; 23 } 24 25 public Rule getRule() { 26 return rule; 27 } 28 29 } 30 | Popular Tags |