Index: topia/src/java/org/codelutin/topia/TopiaAssociationEntity.java diff -u /dev/null topia/src/java/org/codelutin/topia/TopiaAssociationEntity.java:1.1 --- /dev/null Tue Aug 30 13:20:49 2005 +++ topia/src/java/org/codelutin/topia/TopiaAssociationEntity.java Tue Aug 30 13:20:44 2005 @@ -0,0 +1,52 @@ +/* *##% + * Copyright (C) 2005 + * Code Lutin, Cédric Pineau, Benjamin Poussin + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + *##%*/ + +/* * + * TopiaAssociationEntity.java + * + * Created: 27 août 2005 14:39:33 CEST + * + * @author Benjamin POUSSIN + * @version $Revision: 1.1 $ + * + * Last update: $Date: 2005/08/30 13:20:44 $ + * by : $Author: bpoussin $ + */ + +package org.codelutin.topia; + +import org.codelutin.topia.annotation.MethodInfo; +import org.codelutin.topia.annotation.MethodType; + +public interface TopiaAssociationEntity extends TopiaEntity { // TopiaAssociationEntity + + @MethodInfo( type = MethodType.UNIMPLENTED ) + public TopiaEntity get_attribute_A_() throws TopiaException; + + @MethodInfo( type = MethodType.UNIMPLENTED ) + public TopiaEntity get_attribute_B_() throws TopiaException; + + @MethodInfo( type = MethodType.UNIMPLENTED ) + public void set_attribute_A_(TopiaEntity att) throws TopiaException; + + @MethodInfo( type = MethodType.UNIMPLENTED ) + public void set_attribute_B_(TopiaEntity att) throws TopiaException; + +} // TopiaAssociationEntity +