summaryrefslogtreecommitdiff
path: root/src/org/noreply/fancydress/type3/Path.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/noreply/fancydress/type3/Path.java')
-rw-r--r--src/org/noreply/fancydress/type3/Path.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/org/noreply/fancydress/type3/Path.java b/src/org/noreply/fancydress/type3/Path.java
index 8373990..d9b8950 100644
--- a/src/org/noreply/fancydress/type3/Path.java
+++ b/src/org/noreply/fancydress/type3/Path.java
@@ -23,5 +23,9 @@ public class Path {
public HalfPath getSecondHalf() {
return second;
}
+
+ public String asString() {
+ return (first.asString() + ":" + second.asString());
+ }
}