Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2013-05-28 14:39:53 +0000
committerDani Megert2013-05-28 14:39:53 +0000
commite9c0042d24393bd22eb50dddfc7f66a15623b7de (patch)
tree3ee2c6fea86b2181a5ce9554f5548eefd3377370
parent65eb714589164c08280dd44b63c71bdfdf68cbbf (diff)
downloadeclipse.platform.ua-e9c0042d24393bd22eb50dddfc7f66a15623b7de.tar.gz
eclipse.platform.ua-e9c0042d24393bd22eb50dddfc7f66a15623b7de.tar.xz
eclipse.platform.ua-e9c0042d24393bd22eb50dddfc7f66a15623b7de.zip
-rw-r--r--org.eclipse.help.base/src/org/eclipse/help/internal/browser/MozillaBrowserAdapter.java9
-rw-r--r--org.eclipse.help.base/src/org/eclipse/help/internal/browser/MozillaFactory.java7
2 files changed, 12 insertions, 4 deletions
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/browser/MozillaBrowserAdapter.java b/org.eclipse.help.base/src/org/eclipse/help/internal/browser/MozillaBrowserAdapter.java
index 0561f9b61..98b07107a 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/browser/MozillaBrowserAdapter.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/browser/MozillaBrowserAdapter.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2008 IBM Corporation and others.
+ * Copyright (c) 2000, 2013 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -18,8 +18,11 @@ import org.eclipse.help.internal.base.*;
import org.eclipse.osgi.util.NLS;
/**
- * Browser adapter for browsers supporting -remote openURL command line option
- * i.e. Mozilla and Netscape.
+ * Browser adapter for Linux-based browsers supporting -remote openURL command line option i.e.
+ * Mozilla and Netscape.
+ * <p>
+ * The {@link MozillaFactory} creates this adapter.
+ * </p>
*/
public class MozillaBrowserAdapter implements IBrowser {
// delay that it takes mozilla to start responding
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/browser/MozillaFactory.java b/org.eclipse.help.base/src/org/eclipse/help/internal/browser/MozillaFactory.java
index c631e842f..672c23976 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/browser/MozillaFactory.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/browser/MozillaFactory.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2006 IBM Corporation and others.
+ * Copyright (c) 2000, 2013 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -17,6 +17,11 @@ import java.util.Locale;
import org.eclipse.core.runtime.*;
import org.eclipse.help.browser.*;
import org.eclipse.help.internal.base.*;
+
+
+/**
+ * Browser factory for Linux-based operating systems.
+ */
public class MozillaFactory implements IBrowserFactory, IExecutableExtension {
private String executable;
private String executableName;

Back to the top