Package gov.nist.scap.xccdf.document

Examples of gov.nist.scap.xccdf.document.Identifiable


     * Constructs a string representation of the reference loop
     * @return a string representing the reference loop
     */
    public String getReferenceString() {
        StringBuilder retval = new StringBuilder();
        Identifiable target = null;
        for (Identifiable i : referenceList) {
            if (target == null) target = i;

            retval.append(i.getId());
            retval.append(" -> ");
        }
        if (retval.length() > 0) retval.append(target.getId());
        return retval.toString();
    }
View Full Code Here

TOP

Related Classes of gov.nist.scap.xccdf.document.Identifiable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.