soapmonitor-applet/src/main/java/SOAPMonitorApplet.java [145:202]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        private String                host = null;
        private Socket                socket = null;
        private ObjectInputStream     in = null;
        private ObjectOutputStream    out = null;
        private SOAPMonitorTableModel model = null;
        private JTable                table = null;
        private JScrollPane           scroll = null;
        private JPanel                list_panel = null;
        private JPanel                list_buttons = null;
        private JButton               remove_button = null;
        private JButton               remove_all_button = null;
        private JButton               filter_button = null;
        private JPanel                details_panel = null;
        private JPanel                details_header = null;
        private JSplitPane            details_soap = null;
        private JPanel                details_buttons = null;
        private JLabel                details_time = null;
        private JLabel                details_target = null;
        private JLabel                details_status = null;
        private JLabel                details_time_value = null;
        private JLabel                details_target_value = null;
        private JLabel                details_status_value = null;
        private EmptyBorder           empty_border = null;
        private EtchedBorder          etched_border = null;
        private JPanel                request_panel = null;
        private JPanel                response_panel = null;
        private JLabel                request_label = null;
        private JLabel                response_label = null;
        private SOAPMonitorTextArea   request_text = null;
        private SOAPMonitorTextArea   response_text = null;
        private JScrollPane           request_scroll = null;
        private JScrollPane           response_scroll = null;
        private JButton               layout_button = null;
        private JSplitPane            split = null;
        private JPanel                status_area = null;
        private JPanel                status_buttons = null;
        private JButton               start_button = null;
        private JButton               stop_button = null;
        private JLabel                status_text = null;
        private JPanel                status_text_panel = null;
        private SOAPMonitorFilter     filter = null;
        private GridBagLayout         details_header_layout = null;
        private GridBagConstraints    details_header_constraints = null;
        private JCheckBox             reflow_xml = null;

        /**
         * Constructor (create and layout page)
         */
        public SOAPMonitorPage(String host_name) {
            host = host_name;
            // Set up default filter (show all messages)
            filter = new SOAPMonitorFilter();
            // Use borders to help improve appearance
            etched_border = new EtchedBorder();
            // Build top portion of split (list panel) 
            model = new SOAPMonitorTableModel();
            table = new JTable(model);
            table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



soapmonitor-client/src/main/java/org/apache/axis/utils/SOAPMonitor.java [1007:1241]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        private String host = null;

        /**
         * Field socket
         */
        private Socket socket = null;

        /**
         * Field in
         */
        private ObjectInputStream in = null;

        /**
         * Field out
         */
        private ObjectOutputStream out = null;

        /**
         * Field model
         */
        private SOAPMonitorTableModel model = null;

        /**
         * Field table
         */
        private JTable table = null;

        /**
         * Field scroll
         */
        private JScrollPane scroll = null;

        /**
         * Field list_panel
         */
        private JPanel list_panel = null;

        /**
         * Field list_buttons
         */
        private JPanel list_buttons = null;

        /**
         * Field remove_button
         */
        private JButton remove_button = null;

        /**
         * Field remove_all_button
         */
        private JButton remove_all_button = null;

        /**
         * Field filter_button
         */
        private JButton filter_button = null;

        /**
         * Field details_panel
         */
        private JPanel details_panel = null;

        /**
         * Field details_header
         */
        private JPanel details_header = null;

        /**
         * Field details_soap
         */
        private JSplitPane details_soap = null;

        /**
         * Field details_buttons
         */
        private JPanel details_buttons = null;

        /**
         * Field details_time
         */
        private JLabel details_time = null;

        /**
         * Field details_target
         */
        private JLabel details_target = null;

        /**
         * Field details_status
         */
        private JLabel details_status = null;

        /**
         * Field details_time_value
         */
        private JLabel details_time_value = null;

        /**
         * Field details_target_value
         */
        private JLabel details_target_value = null;

        /**
         * Field details_status_value
         */
        private JLabel details_status_value = null;

        /**
         * Field empty_border
         */
        private EmptyBorder empty_border = null;

        /**
         * Field etched_border
         */
        private EtchedBorder etched_border = null;

        /**
         * Field request_panel
         */
        private JPanel request_panel = null;

        /**
         * Field response_panel
         */
        private JPanel response_panel = null;

        /**
         * Field request_label
         */
        private JLabel request_label = null;

        /**
         * Field response_label
         */
        private JLabel response_label = null;

        /**
         * Field request_text
         */
        private SOAPMonitorTextArea request_text = null;

        /**
         * Field response_text
         */
        private SOAPMonitorTextArea response_text = null;

        /**
         * Field request_scroll
         */
        private JScrollPane request_scroll = null;

        /**
         * Field response_scroll
         */
        private JScrollPane response_scroll = null;

        /**
         * Field layout_button
         */
        private JButton layout_button = null;

        /**
         * Field split
         */
        private JSplitPane split = null;

        /**
         * Field status_area
         */
        private JPanel status_area = null;

        /**
         * Field status_buttons
         */
        private JPanel status_buttons = null;

        /**
         * Field start_button
         */
        private JButton start_button = null;

        /**
         * Field stop_button
         */
        private JButton stop_button = null;

        /**
         * Field status_text
         */
        private JLabel status_text = null;

        /**
         * Field status_text_panel
         */
        private JPanel status_text_panel = null;

        /**
         * Field filter
         */
        private SOAPMonitorFilter filter = null;

        /**
         * Field details_header_layout
         */
        private GridBagLayout details_header_layout = null;

        /**
         * Field details_header_constraints
         */
        private GridBagConstraints details_header_constraints = null;

        /**
         * Field reflow_xml
         */
        private JCheckBox reflow_xml = null;

        /**
         * Constructor (create and layout page)
         * 
         * @param host_name 
         */
        public SOAPMonitorPage(String host_name) {
            host = host_name;

            // Set up default filter (show all messages)
            filter = new SOAPMonitorFilter();

            // Use borders to help improve appearance
            etched_border = new EtchedBorder();

            // Build top portion of split (list panel)
            model = new SOAPMonitorTableModel();
            table = new JTable(model);
            table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



