1 package com.icl.saxon; 2 import com.icl.saxon.expr.Expression; 3 import com.icl.saxon.pattern.Pattern; 4 5 9 10 public class KeyDefinition { 11 12 private int fingerprint; private Pattern match; private Expression use; 16 19 20 public KeyDefinition(int fingerprint, Pattern match, Expression use) { 21 this.fingerprint = fingerprint; 22 this.match = match; 23 this.use = use; 24 } 25 26 29 30 public int getFingerprint() { 31 return fingerprint; 32 } 33 34 37 38 public Pattern getMatch() { 39 return match; 40 } 41 42 45 46 public Expression getUse() { 47 return use; 48 } 49 } 50 51 | Popular Tags |