blob: b478f930fee77f9cb3142e9115f5efe9a5fe89d5 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.netbeans.modules.cordova.project;
import java.awt.Component;
import java.beans.PropertyChangeListener;
import java.net.MalformedURLException;
import java.net.URL;
import org.openide.awt.HtmlBrowser;
import org.openide.util.Exceptions;
import org.openide.util.NbBundle;
/**
*
* @author Jan Becicka
*/
public class CordovaBrowser extends HtmlBrowser.Impl {
private URL url;
@Override
public Component getComponent() {
return null;
}
@Override
public void reloadDocument() {
}
@Override
public void stopLoading() {
}
@Override
public void setURL(URL url) {
this.url=url;
}
@Override
public URL getURL() {
return url;
}
@Override
public String getStatusMessage() {
return "";
}
@Override
@NbBundle.Messages({"LBL_Cordova=Cordova"})
public String getTitle() {
return Bundle.LBL_Cordova();
}
@Override
public boolean isForward() {
return false;
}
@Override
public void forward() {
}
@Override
public boolean isBackward() {
return false;
}
@Override
public void backward() {
}
@Override
public boolean isHistory() {
return false;
}
@Override
public void showHistory() {
}
@Override
public void addPropertyChangeListener(PropertyChangeListener l) {
}
@Override
public void removePropertyChangeListener(PropertyChangeListener l) {
}
}