From: Robert L. <rle...@us...> - 2007-03-21 12:28:59
|
Update of /cvsroot/ccmtools/java-environment/src/Components In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv12535/src/Components Modified Files: ComponentDelegator.java Log Message: Java Assemblies: new design Index: ComponentDelegator.java =================================================================== RCS file: /cvsroot/ccmtools/java-environment/src/Components/ComponentDelegator.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ComponentDelegator.java 20 Mar 2007 14:06:13 -0000 1.1 --- ComponentDelegator.java 21 Mar 2007 12:28:55 -0000 1.2 *************** *** 20,26 **** * * @param name name of the facet ! * @return facet adapter (or null if the facet is unknown) */ ! Object provide( String name ); /** --- 20,27 ---- * * @param name name of the facet ! * @return facet adapter (or null if the facet is not supported) ! * @throws InvalidName if a facet of that name is not known */ ! Object provide( String name ) throws InvalidName; /** *************** *** 29,33 **** * @param name name of the receptacle * @param connection the facet ! * @return cookie for multiple receptacles; null for single receptacles */ Cookie connect( String name, Object connection ) throws InvalidName, InvalidConnection, --- 30,34 ---- * @param name name of the receptacle * @param connection the facet ! * @return cookie for multiple receptacles */ Cookie connect( String name, Object connection ) throws InvalidName, InvalidConnection, |