ArtiSynth Coding Standard

7 Break lines after assignment operators

Another good place for a line break is after an assignment operator, particularly if the left side is long:

   LinkedList<ClipPlaneControl> myClipPlaneControls =
      new LinkedList<ClipPlaneControl>();
   if (hasMuscle) {
      ComponentList<MuscleBundle> muscles =
         ((MuscleTissue)tissue).getMuscleList();
   }

Again, Eclipse will not generally enforce this, so it must be done manually.