Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Ferrazzutti2014-04-25 14:05:37 +0000
committerAlexander Kurtakov2014-04-26 05:35:49 +0000
commit9f5e0ed5dfda7ac2bf14f4b59228135bdbcb6a10 (patch)
tree6460ae9326e2948a1c746798febd00f82321f638 /profiling/org.eclipse.linuxtools.profiling.launch/src/org/eclipse/linuxtools/profiling/launch/ui/FileSystemElement.java
parentfe48cecc1b6ba671cf0a70014e760413dae4cce9 (diff)
downloadorg.eclipse.linuxtools-9f5e0ed5dfda7ac2bf14f4b59228135bdbcb6a10.tar.gz
org.eclipse.linuxtools-9f5e0ed5dfda7ac2bf14f4b59228135bdbcb6a10.tar.xz
org.eclipse.linuxtools-9f5e0ed5dfda7ac2bf14f4b59228135bdbcb6a10.zip
Change tabs to spaces; elim trailing whitespace.
To comply with Sonar style requirements, replace all tab characters with four whitespace characters/spaces, and remove all trailing whitespace. Perform this change to all Java and XML files. Also replace tabs with "\t" in test strings that require tabs, and edit STPIndenterTest so that it doesn't rely on indented comments. Change-Id: I48c3c5449a58fe5310967d998a05df1a28fbcbb0 Signed-off-by: Andrew Ferrazzutti <aferrazz@redhat.com> Reviewed-on: https://git.eclipse.org/r/25561 Reviewed-by: Alexander Kurtakov <akurtako@redhat.com> Tested-by: Alexander Kurtakov <akurtako@redhat.com>
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