Example usage for org.bouncycastle.asn1.x509 AccessDescription equals

List of usage examples for org.bouncycastle.asn1.x509 AccessDescription equals

Introduction

In this page you can find the example usage for org.bouncycastle.asn1.x509 AccessDescription equals.

Prototype

public boolean equals(Object o) 

Source Link

Usage

From source file:net.sf.keystore_explorer.gui.crypto.accessdescription.JAccessDescriptions.java

License:Open Source License

private void selectAccessDescriptionInTable(AccessDescription accessDescription) {
    for (int i = 0; i < jtAccessDescriptions.getRowCount(); i++) {
        if (accessDescription.equals(jtAccessDescriptions.getValueAt(i, 0))) {
            jtAccessDescriptions.changeSelection(i, 0, false, false);
            return;
        }//from   w  w  w.  j av a  2 s  .  c  o m
    }
}