1 /* =================================================================== 2 * Copyright 2002-04 SRI International. 3 * Released under the MOZILLA PUBLIC LICENSE Version 1.1 4 * which can be obtained at http://www.mozilla.org/MPL/MPL-1.1.html 5 * This software is distributed on an "AS IS" 6 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. 7 * See the License for the specific language governing rights and 8 * limitations under the License. 9 * =================================================================== */ 10 package com.sri.emo.wizard; 11 12 /*** 13 * Link to something else. 14 * 15 * @author Michael Rimov 16 */ 17 public interface Link extends java.lang.Cloneable { 18 /*** 19 * Provides a context-relative URL to something else. 20 * 21 * @return String, full URL 22 * @throws WizardException upon error for generating the link. 23 */ 24 String getLink() throws WizardException; 25 }