// Copyright 2003, Trustees of Indiana University // Please see the license in the file ../LICENSE // Null property_map implementation import java.util.*; public class null_property_map implements ReadWritePropertyMap { public void set(A a, B b) {} public B get(A a) {return null;} }