OSDN Git Service

必要のないクラスを削除し,クラスの整理を行った.
[stigmata/stigmata.git] / src / main / java / jp / sourceforge / stigmata / ui / swing / BirthmarkSelectionCheckSetPane.java
index e807e83..d0fca32 100644 (file)
@@ -1,9 +1,5 @@
 package jp.sourceforge.stigmata.ui.swing;
 
-/*
- * $Id$
- */
-
 import java.awt.BorderLayout;
 import java.awt.Dimension;
 import java.awt.GridLayout;
@@ -19,7 +15,6 @@ import javax.swing.JPanel;
 /**
  *
  * @author Haruaki TAMADA
- * @version $Revision$ 
  */
 public class BirthmarkSelectionCheckSetPane extends BirthmarkSelectablePane{
     private static final long serialVersionUID = 3209854654743223453L;
@@ -75,7 +70,7 @@ public class BirthmarkSelectionCheckSetPane extends BirthmarkSelectablePane{
         for(Iterator<BirthmarkSelection> i = birthmarkSelections(); i.hasNext(); ){
             final BirthmarkSelection elem = i.next();
             if(elem.isVisible(isExperimentalMode())){
-                JCheckBox check = new JCheckBox(elem.getService().getDisplayType());
+                JCheckBox check = new JCheckBox(elem.getService().getType());
                 check.setSelected(elem.isSelected());
                 check.addActionListener(new ActionListener(){
                     @Override