1 24 25 package com.mckoi.database; 26 27 35 36 public class ParameterSubstitution implements java.io.Serializable { 37 38 static final long serialVersionUID = -740886588230246432L; 39 40 44 private int parameter_id; 45 46 49 public ParameterSubstitution(int parameter_id) { 50 this.parameter_id = parameter_id; 51 } 52 53 56 public int getID() { 57 return parameter_id; 58 } 59 60 63 public boolean equals(Object ob) { 64 ParameterSubstitution sub = (ParameterSubstitution) ob; 65 return this.parameter_id == sub.parameter_id; 66 } 67 68 } 69 | Popular Tags |