summaryrefslogtreecommitdiff
path: root/cmpcj/src/de/schwarzrot/media/domain/PlayerDefinition.java
diff options
context:
space:
mode:
Diffstat (limited to 'cmpcj/src/de/schwarzrot/media/domain/PlayerDefinition.java')
-rw-r--r--cmpcj/src/de/schwarzrot/media/domain/PlayerDefinition.java43
1 files changed, 27 insertions, 16 deletions
diff --git a/cmpcj/src/de/schwarzrot/media/domain/PlayerDefinition.java b/cmpcj/src/de/schwarzrot/media/domain/PlayerDefinition.java
index 05b9bbc..85f4f3c 100644
--- a/cmpcj/src/de/schwarzrot/media/domain/PlayerDefinition.java
+++ b/cmpcj/src/de/schwarzrot/media/domain/PlayerDefinition.java
@@ -1,25 +1,25 @@
/**
* ======================== legal notice ======================
*
- * File: PlayerDefinition.java
- * Created: 13. June 2012, 04:57
- * Author: <a href="mailto:geronimo013@gmx.de">Geronimo</a>
- * Project: cmpc - a java frontend (client) part of compound media player
- * uses external players to play the media
+ * File: PlayerDefinition.java Created: 13. June 2012, 04:57 Author: <a
+ * href="mailto:geronimo013@gmx.de">Geronimo</a> Project: cmpc - a java frontend
+ * (client) part of compound media player uses external players to play the
+ * media
*
* CMP - compound media player
*
- * is a client/server mediaplayer intended to play any media from any workstation
- * without the need to export or mount shares. cmps is an easy to use backend
- * with a (ready to use) HTML-interface. Additionally the backend supports
- * authentication via HTTP-digest authorization.
- * cmpc is a client with vdr-like osd-menues.
+ * is a client/server mediaplayer intended to play any media from any
+ * workstation without the need to export or mount shares. cmps is an easy to
+ * use backend with a (ready to use) HTML-interface. Additionally the backend
+ * supports authentication via HTTP-digest authorization. cmpc is a client with
+ * vdr-like osd-menues.
*
- * Copyright (c) 2012 Reinhard Mantey, some rights reserved!
- * published under Creative Commons by-sa
- * For details see http://creativecommons.org/licenses/by-sa/3.0/
+ * Copyright (c) 2012 Reinhard Mantey, some rights reserved! published under
+ * Creative Commons by-sa For details see
+ * http://creativecommons.org/licenses/by-sa/3.0/
*
- * The cmp project's homepage is at http://projects.vdr-developer.org/projects/cmp
+ * The cmp project's homepage is at
+ * http://projects.vdr-developer.org/projects/cmp
*
* --------------------------------------------------------------
*/
@@ -30,7 +30,7 @@ import java.util.ArrayList;
import java.util.List;
-public class PlayerDefinition {
+public class PlayerDefinition implements Cloneable {
public PlayerDefinition() {
parameters = new ArrayList<String>();
}
@@ -41,6 +41,17 @@ public class PlayerDefinition {
}
+ @Override
+ public Object clone() {
+ PlayerDefinition pd = new PlayerDefinition();
+
+ pd.mediaType = mediaType;
+ pd.setCommandLine(getCommandLine());
+
+ return pd;
+ }
+
+
public String getCommandLine() {
if (commandLine == null)
assembleCommandLine();
@@ -87,7 +98,7 @@ public class PlayerDefinition {
protected void assembleCommandLine() {
- if (executable == null || parameters == null || parameters.size() < 1)
+ if (executable == null || parameters == null)
return;
StringBuilder sb = new StringBuilder(executable);