/* Author: Jeff Dalton * Updated: Mon Apr 23 23:52:13 2001 by Jeff Dalton * Copyright: (c) 2000, AIAI, University of Edinburgh */ package ix.icore.domain; import ix.util.*; import ix.util.lisp.*; /** * A pattern-value pair. */ public class PVPair { Object pattern; // LList? Object value; public PVPair(Object Pattern, Object Value) { this.pattern = pattern; this.value = value; } public String toString() { return "PVPair[" + pattern + " = " + value + "]"; } }