Update of /cvsroot/nextobjects/nextobjects/nextobjects/src/org/devaki/nextobjects/ui/workspace/models/objects
In directory sc8-pr-cvs1:/tmp/cvs-serv4701/src/org/devaki/nextobjects/ui/workspace/models/objects
Modified Files:
AssociationLinkEdit.java
Log Message:
checkstyle
Index: AssociationLinkEdit.java
===================================================================
RCS file: /cvsroot/nextobjects/nextobjects/nextobjects/src/org/devaki/nextobjects/ui/workspace/models/objects/AssociationLinkEdit.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** AssociationLinkEdit.java 8 Mar 2003 12:57:21 -0000 1.3
--- AssociationLinkEdit.java 8 Jun 2003 09:57:03 -0000 1.4
***************
*** 51,427 ****
import org.devaki.nextobjects.workspace.models.graphics.LineView;
public class AssociationLinkEdit extends JDialog
{
- /** Variables **/
- // Local reference of the edited object
- private AssociationLink myAssociationLink;
! /** Components **/
[...976 lines suppressed...]
! } else if (this.jRadioButton11.isSelected())
! {
! this.myAssociationLink.setCard(ConceptualModel._11_);
! } else if (this.jRadioButton0N.isSelected())
! {
! this.myAssociationLink.setCard(ConceptualModel._0N_);
! } else if (this.jRadioButton1N.isSelected())
! {
! this.myAssociationLink.setCard(ConceptualModel._1N_);
! }
! this.myAssociationLink.setNotes(this.jTextAreaNotes.getText());
! this.myAssociationLink.setParentClass(
! (Association) this.jComboBoxParent.getSelectedItem());
! this.myAssociationLink.setChildClass(
! (Entity) this.jComboBoxChild.getSelectedItem());
! ((LineView) this.myAssociationLink.getObjectView()).computeBestPoints();
! this.myAssociationLink.getMyModel().getPanel().repaint();
! }
} // End of class 'AssociationLinkEdit'
|