/* * @(#)DemoTCKEnvInterview.java 1.6 01/07/16 Jonathan Gibbons * * Copyright 2001 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. * * Copyright 2001 Sun Microsystems, Inc. Tous droits réservés. * Distribueé par des licences qui en restreignent l'utilisation. */ package com.sun.demotck.interview; import java.util.Map; import com.sun.interview.Interview; abstract class DemoTCKEnvInterview extends Interview { DemoTCKEnvInterview(Interview parent, String tag) { super(parent, tag); } abstract String envEntry(String name); }