package open.dolphin.order; /** * * @author Kazushi Minagawa. */ public interface IRadView { /** * @return the clearBtn */ public javax.swing.JButton getClearBtn(); /** * @return the countField */ public javax.swing.JTextField getCountField(); /** * @return the deleteBtn */ public javax.swing.JButton getDeleteBtn(); /** * @return the infoLabel */ public javax.swing.JLabel getInfoLabel(); /** * @return the okBtn */ public javax.swing.JButton getOkBtn(); /** * @return the okCntBtn */ public javax.swing.JButton getOkCntBtn(); /** * @return the partBtn */ public javax.swing.JButton getPartBtn(); /** * @return the partCheck */ public javax.swing.JCheckBox getPartCheck(); /** * @return the rtCheck */ public javax.swing.JCheckBox getRtCheck(); /** * @return the searchResultTable */ public javax.swing.JTable getSearchResultTable(); /** * @return the searchTextField */ public javax.swing.JTextField getSearchTextField(); /** * @return the setTable */ public javax.swing.JTable getSetTable(); /** * @return the stampNameField */ public javax.swing.JTextField getStampNameField(); /** * @return the techCheck */ public javax.swing.JCheckBox getTechCheck(); /** * @return the parialChk */ public javax.swing.JCheckBox getPartialChk(); //s.oh^ 2014/03/31 スタンプ回数対応 public javax.swing.JComboBox getNumberCombo(); //s.oh$ //s.oh^ 2014/10/22 Icon表示 public javax.swing.JLabel getSearchLabel(); //s.oh$ }