01: /*
02: * @(#)RuleTarget.java 1.2 04/12/06
03: *
04: * Copyright (c) 2003 Sun Microsystems, Inc. All Rights Reserved.
05: *
06: * See the file "LICENSE.txt" for information on usage and redistribution
07: * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
08: */
09: package pnuts.xml;
10:
11: class RuleTarget {
12: DigestAction action;
13: String keyword;
14:
15: RuleTarget(DigestAction action, String keyword) {
16: this.action = action;
17: this.keyword = keyword;
18: }
19: }
|