Package org.drools.guvnor.client.util

Source Code of org.drools.guvnor.client.util.Util

/*
* 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.guvnor.client.util;

import org.drools.guvnor.client.common.HeaderHTML;

import com.google.gwt.resources.client.ImageResource;
import com.google.gwt.user.client.Window;
import com.google.gwt.user.client.ui.AbstractImagePrototype;
import com.google.gwt.user.client.ui.HTML;

public class Util {

    /**
     * Get a string representation of the header that includes an image and some
     * text.
     *
     * @param image the {@link ImageResource} to add next to the header
     * @param text the header text
     * @return the header as a string
     */
    public static String getHeader(ImageResource image,
                                   String text) {
        return AbstractImagePrototype.create( image ).getHTML() + " " + text;
    }

    /**
     * Get a string representation of the header that includes an image and some
     * text.
     *
     * @param image the {@link ImageResource} to add next to the header
     * @param text the header text
     * @return the header as a string
     */
    public static HTML getHeaderHTML(ImageResource image,
                                     String text) {

        HeaderHTML headerHTML = new HeaderHTML();

        headerHTML.setText( text );
        headerHTML.setImageResource( image );

        return new HTML( headerHTML.getElement().getString() );
    }

    /**
     * The URL that will be used to open up assets in a feed.
     * (by tacking asset id on the end, of course !).
     */
    public static String getSelfURL() {
        String selfURL = Window.Location.getHref();
        if ( selfURL.contains( "#" ) ) {
            selfURL = selfURL.substring( 0,
                                         selfURL.indexOf( "#" ) );
        }
        return selfURL;
    }
}
TOP

Related Classes of org.drools.guvnor.client.util.Util

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.