refresh JavaFX Web View - Java JavaFX

Java examples for JavaFX:Web View

Description

refresh JavaFX Web View

Demo Code

/*/*from   w  ww.  j a v a  2 s  . c  o  m*/
 *  Copyright (c) 2008 - Tomas Janecek.
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */
//package com.java2s;
import javafx.beans.property.StringProperty;

import javafx.scene.web.WebEngine;

public class Main {
    private static void refreshWebView(final WebEngine webEngine,
            final StringProperty contentProperty,
            final StringProperty contentTypeProperty) {
        if ((contentTypeProperty == null)
                || (contentTypeProperty.getValue() == null)) {
            webEngine.loadContent(contentProperty.getValue());
        } else {
            webEngine.loadContent(contentProperty.getValue(),
                    contentTypeProperty.getValue());
        }
    }
}

Related Tutorials