Package org.drools.verifier.report.html

Source Code of org.drools.verifier.report.html.UrlFactory

/**
* Copyright 2010 JBoss Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.drools.verifier.report.html;

import org.drools.verifier.components.VerifierRule;

/**
*
* @author Toni Rikkola
*/
class UrlFactory {

    public static final String THIS_FOLDER                 = ".";
    public static final String PREVIOUS_FOLDER             = "..";

    public static final String SOURCE_FOLDER               = "report";
    public static final String OBJECT_TYPE_FOLDER          = "objectTypes";
    public static final String FIELD_FOLDER                = "fields";
    public static final String RULE_FOLDER                 = "rules";
    public static final String PACKAGE_FOLDER              = "packages";
    public static final String CSS_FOLDER                  = "css";

    public static final String CSS_BASIC                   = "basic.css";

    public static final String IMAGES_FOLDER               = "images";

    public static final String HTML_FILE_INDEX             = "index.htm";
    public static final String HTML_FILE_PACKAGES          = "packages.htm";
    public static final String HTML_FILE_VERIFIER_MESSAGES = "verifierMessages.htm";

    /**
     * Finds a link to object if one exists.
     *
     * @param o
     *            Object that might have a page that can be linked.
     * @return Link to objects page or the toString() text if no link could not
     *         be created.
     */
    public static String getUrl(Object o) {
        if ( o instanceof VerifierRule ) {
            VerifierRule rule = (VerifierRule) o;
            return getRuleUrl( UrlFactory.RULE_FOLDER,
                               rule.getPath(),
                               rule.getName() );
        }

        return o.toString();
    }

    static String getRuleUrl(String sourceFolder,
                             String ruleId,
                             String ruleName) {
        return "<a href=\"" + sourceFolder + "/" + RULE_FOLDER + "/" + ruleId + ".htm\">" + ruleName + "</a>";
    }

}
TOP

Related Classes of org.drools.verifier.report.html.UrlFactory

TOP
Copyright © 2018 www.massapi.com. 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.