Example usage for javax.swing.tree MutableTreeNode toString

List of usage examples for javax.swing.tree MutableTreeNode toString

Introduction

In this page you can find the example usage for javax.swing.tree MutableTreeNode toString.

Prototype

public String toString() 

Source Link

Document

Returns a string representation of the object.

Usage

From source file:ffx.potential.bonded.MultiTerminus.java

@Override
public void add(MutableTreeNode mtn) {
    super.add(mtn);
    if (DEBUG) {//from  www . j a  v a2  s . c  om
        logger.info("Adding to terminus: " + mtn.toString());
    }
}