Search in sources :

Example 1 with AttackStrength

use of org.parosproxy.paros.core.scanner.Plugin.AttackStrength in project zaproxy by zaproxy.

the class PolicyAllCategoryPanel method getTableTest.

/**
     * This method initializes tableTest
     *
     * @return javax.swing.JTable
     */
private JTable getTableTest() {
    if (tableTest == null) {
        tableTest = new JTable();
        tableTest.setModel(getAllCategoryTableModel());
        tableTest.setRowHeight(DisplayUtils.getScaledSize(18));
        tableTest.setIntercellSpacing(new java.awt.Dimension(1, 1));
        tableTest.setAutoCreateRowSorter(true);
        //Default sort by name (column 0)
        List<RowSorter.SortKey> sortKeys = new ArrayList<RowSorter.SortKey>(1);
        sortKeys.add(new RowSorter.SortKey(0, SortOrder.ASCENDING));
        tableTest.getRowSorter().setSortKeys(sortKeys);
        for (int i = 0; i < tableTest.getColumnCount() - 1; i++) {
            TableColumn column = tableTest.getColumnModel().getColumn(i);
            column.setPreferredWidth(width[i]);
        }
        JComboBox<String> jcb1 = new JComboBox<>();
        // Always show a blank one for where they are not all the same
        jcb1.addItem("");
        for (AlertThreshold level : AlertThreshold.values()) {
            jcb1.addItem(Constant.messages.getString("ascan.policy.level." + level.name().toLowerCase()));
        }
        tableTest.getColumnModel().getColumn(1).setCellEditor(new DefaultCellEditor(jcb1));
        JComboBox<String> jcb2 = new JComboBox<>();
        // Always show a blank one for where they are not all the same
        jcb2.addItem("");
        for (AttackStrength level : AttackStrength.values()) {
            jcb2.addItem(Constant.messages.getString("ascan.policy.level." + level.name().toLowerCase()));
        }
        tableTest.getColumnModel().getColumn(2).setCellEditor(new DefaultCellEditor(jcb2));
    }
    return tableTest;
}
Also used : RowSorter(javax.swing.RowSorter) JComboBox(javax.swing.JComboBox) ArrayList(java.util.ArrayList) TableColumn(javax.swing.table.TableColumn) AlertThreshold(org.parosproxy.paros.core.scanner.Plugin.AlertThreshold) DefaultCellEditor(javax.swing.DefaultCellEditor) JTable(javax.swing.JTable) AttackStrength(org.parosproxy.paros.core.scanner.Plugin.AttackStrength)

Example 2 with AttackStrength

use of org.parosproxy.paros.core.scanner.Plugin.AttackStrength in project zaproxy by zaproxy.

the class PolicyCategoryPanel method getTableTest.

/**
	 * This method initializes tableTest
	 *
	 * @return javax.swing.JTable
	 */
private JTable getTableTest() {
    if (tableTest == null) {
        tableTest = new JTable();
        tableTest.setModel(getCategoryTableModel());
        tableTest.setRowHeight(DisplayUtils.getScaledSize(18));
        tableTest.setIntercellSpacing(new java.awt.Dimension(1, 1));
        tableTest.setAutoCreateRowSorter(true);
        //Default sort by name (column 0)
        List<RowSorter.SortKey> sortKeys = new ArrayList<RowSorter.SortKey>(1);
        sortKeys.add(new RowSorter.SortKey(0, SortOrder.ASCENDING));
        tableTest.getRowSorter().setSortKeys(sortKeys);
        for (int i = 0; i < tableTest.getColumnCount() - 1; i++) {
            TableColumn column = tableTest.getColumnModel().getColumn(i);
            column.setPreferredWidth(width[i]);
        }
        JComboBox<String> jcb1 = new JComboBox<>();
        for (AlertThreshold level : AlertThreshold.values()) {
            jcb1.addItem(Constant.messages.getString("ascan.policy.level." + level.name().toLowerCase()));
        }
        tableTest.getColumnModel().getColumn(1).setCellEditor(new DefaultCellEditor(jcb1));
        JComboBox<String> jcb2 = new JComboBox<>();
        for (AttackStrength level : AttackStrength.values()) {
            jcb2.addItem(Constant.messages.getString("ascan.policy.level." + level.name().toLowerCase()));
        }
        tableTest.getColumnModel().getColumn(2).setCellEditor(new DefaultCellEditor(jcb2));
    }
    return tableTest;
}
Also used : RowSorter(javax.swing.RowSorter) JComboBox(javax.swing.JComboBox) ArrayList(java.util.ArrayList) TableColumn(javax.swing.table.TableColumn) AlertThreshold(org.parosproxy.paros.core.scanner.Plugin.AlertThreshold) DefaultCellEditor(javax.swing.DefaultCellEditor) JTable(javax.swing.JTable) AttackStrength(org.parosproxy.paros.core.scanner.Plugin.AttackStrength)

Aggregations

ArrayList (java.util.ArrayList)2 DefaultCellEditor (javax.swing.DefaultCellEditor)2 JComboBox (javax.swing.JComboBox)2 JTable (javax.swing.JTable)2 RowSorter (javax.swing.RowSorter)2 TableColumn (javax.swing.table.TableColumn)2 AlertThreshold (org.parosproxy.paros.core.scanner.Plugin.AlertThreshold)2 AttackStrength (org.parosproxy.paros.core.scanner.Plugin.AttackStrength)2