Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.etrice.generator/src/org/eclipse/etrice/generator/base/GenFile.java')
-rw-r--r--plugins/org.eclipse.etrice.generator/src/org/eclipse/etrice/generator/base/GenFile.java122
1 files changed, 61 insertions, 61 deletions
diff --git a/plugins/org.eclipse.etrice.generator/src/org/eclipse/etrice/generator/base/GenFile.java b/plugins/org.eclipse.etrice.generator/src/org/eclipse/etrice/generator/base/GenFile.java
index e7acc8559..ed3d54262 100644
--- a/plugins/org.eclipse.etrice.generator/src/org/eclipse/etrice/generator/base/GenFile.java
+++ b/plugins/org.eclipse.etrice.generator/src/org/eclipse/etrice/generator/base/GenFile.java
@@ -1,62 +1,62 @@
-/*******************************************************************************
- * Copyright (c) 2011 protos software gmbh (http://www.protos.de).
- * 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
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * CONTRIBUTORS:
- * Henrik Rentz-Reichert (initial contribution)
- *
- *******************************************************************************/
-
-package org.eclipse.etrice.generator.base;
-
-/**
- * this object represents a (generated) file in a file system
- *
- * @author Henrik Rentz-Reichert
- *
- */
-public class GenFile extends GenItem {
-
- /**
- * @param parent the parent directory
- * @param name the name of this file
- */
- public GenFile(GenDir parent, String name) {
- super(parent, name);
- }
-
- /**
- * @return the file name with the extension stripped off (if there)
- */
- public String getBaseName() {
- int pos = getName().lastIndexOf('.');
- if (pos>=0)
- return getName().substring(0, pos);
- else
- return getName();
- }
-
- /**
- * @return the path of this file (no trailing /)
- * @see org.eclipse.etrice.generator.base.GenItem#getPath()
- */
- @Override
- public String getPath() {
- String path = super.getPath();
- return path.substring(0, path.length()-PATH_SEP.length());
- }
-
- /**
- * @return the extension of this file or an empty string if no extensions exists
- */
- public String getExtension() {
- int pos = getName().lastIndexOf('.');
- if (pos>=0)
- return getName().substring(pos+1);
- else
- return "";
- }
+/*******************************************************************************
+ * Copyright (c) 2011 protos software gmbh (http://www.protos.de).
+ * 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
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * CONTRIBUTORS:
+ * Henrik Rentz-Reichert (initial contribution)
+ *
+ *******************************************************************************/
+
+package org.eclipse.etrice.generator.base;
+
+/**
+ * this object represents a (generated) file in a file system
+ *
+ * @author Henrik Rentz-Reichert
+ *
+ */
+public class GenFile extends GenItem {
+
+ /**
+ * @param parent the parent directory
+ * @param name the name of this file
+ */
+ public GenFile(GenDir parent, String name) {
+ super(parent, name);
+ }
+
+ /**
+ * @return the file name with the extension stripped off (if there)
+ */
+ public String getBaseName() {
+ int pos = getName().lastIndexOf('.');
+ if (pos>=0)
+ return getName().substring(0, pos);
+ else
+ return getName();
+ }
+
+ /**
+ * @return the path of this file (no trailing /)
+ * @see org.eclipse.etrice.generator.base.GenItem#getPath()
+ */
+ @Override
+ public String getPath() {
+ String path = super.getPath();
+ return path.substring(0, path.length()-PATH_SEP.length());
+ }
+
+ /**
+ * @return the extension of this file or an empty string if no extensions exists
+ */
+ public String getExtension() {
+ int pos = getName().lastIndexOf('.');
+ if (pos>=0)
+ return getName().substring(pos+1);
+ else
+ return "";
+ }
} \ No newline at end of file

Back to the top