View Javadoc
1 /* 2 * Copyright (c) 2003 3 * Information Desire GmbH 4 * All rights reserved. 5 */ 6 package com.infodesire.infobit.data; 7 8 /*** 9 * DOCUMENT INTERFACE 10 * 11 * @author konstantin 12 * @created August 13, 2003 13 * @version $Revision: 1.1 $ 14 */ 15 public interface Capability { 16 17 /*** 18 * Gets the Name attribute of the Capability object 19 * 20 * @return The Name value 21 */ 22 public String getName(); 23 24 25 /*** 26 * Gets the Description attribute of the Capability object 27 * 28 * @return The Description value 29 */ 30 public String getDescription(); 31 32 33 /*** 34 * Sets the Description attribute of the Capability object 35 * 36 * @param desc The new Description value 37 */ 38 public void setDescription(String desc); 39 40 }

This page was automatically generated by Maven