Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'profiling/org.eclipse.linuxtools.profiling.launch/src/org/eclipse/linuxtools/profiling/launch/ui/FileSystemElement.java')
-rw-r--r--profiling/org.eclipse.linuxtools.profiling.launch/src/org/eclipse/linuxtools/profiling/launch/ui/FileSystemElement.java54
1 files changed, 27 insertions, 27 deletions
diff --git a/profiling/org.eclipse.linuxtools.profiling.launch/src/org/eclipse/linuxtools/profiling/launch/ui/FileSystemElement.java b/profiling/org.eclipse.linuxtools.profiling.launch/src/org/eclipse/linuxtools/profiling/launch/ui/FileSystemElement.java
index ca8e61360c..e3229910b9 100644
--- a/profiling/org.eclipse.linuxtools.profiling.launch/src/org/eclipse/linuxtools/profiling/launch/ui/FileSystemElement.java
+++ b/profiling/org.eclipse.linuxtools.profiling.launch/src/org/eclipse/linuxtools/profiling/launch/ui/FileSystemElement.java
@@ -16,32 +16,32 @@ package org.eclipse.linuxtools.profiling.launch.ui;
*/
public class FileSystemElement {
- private String scheme;
- private String schemeLabel;
- private boolean isDefault;
- private IRemoteResourceSelectorProxy selectorProxy;
-
- public FileSystemElement(String scheme, String schemeLabel, boolean isDefault, IRemoteResourceSelectorProxy selectorProxy) {
- this.schemeLabel = schemeLabel;
- this.scheme = scheme;
- this.isDefault = isDefault;
- this.selectorProxy = selectorProxy;
- }
-
- public String getSchemeLabel() {
- return schemeLabel;
- }
-
- public String getScheme() {
- return scheme;
- }
-
- public boolean getIsDefault() {
- return isDefault;
- }
-
- public IRemoteResourceSelectorProxy getSelectorProxy() {
- return selectorProxy;
- }
+ private String scheme;
+ private String schemeLabel;
+ private boolean isDefault;
+ private IRemoteResourceSelectorProxy selectorProxy;
+
+ public FileSystemElement(String scheme, String schemeLabel, boolean isDefault, IRemoteResourceSelectorProxy selectorProxy) {
+ this.schemeLabel = schemeLabel;
+ this.scheme = scheme;
+ this.isDefault = isDefault;
+ this.selectorProxy = selectorProxy;
+ }
+
+ public String getSchemeLabel() {
+ return schemeLabel;
+ }
+
+ public String getScheme() {
+ return scheme;
+ }
+
+ public boolean getIsDefault() {
+ return isDefault;
+ }
+
+ public IRemoteResourceSelectorProxy getSelectorProxy() {
+ return selectorProxy;
+ }
}

Back to the top