summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/filtershow/filters/FilterDirectRepresentation.java
diff options
context:
space:
mode:
authorJohn Hoford <hoford@google.com>2013-07-15 17:44:31 -0700
committerJohn Hoford <hoford@google.com>2013-07-17 18:28:31 +0000
commit3f0034140c165b86fbaf5c0369f39431548308e9 (patch)
treeaaef85b9dad46528cc1a027a33109e5f2287b354 /src/com/android/gallery3d/filtershow/filters/FilterDirectRepresentation.java
parent5138b28530301bf751adecb87ed58a214cd55116 (diff)
downloadandroid_packages_apps_Gallery2-3f0034140c165b86fbaf5c0369f39431548308e9.tar.gz
android_packages_apps_Gallery2-3f0034140c165b86fbaf5c0369f39431548308e9.tar.bz2
android_packages_apps_Gallery2-3f0034140c165b86fbaf5c0369f39431548308e9.zip
remove clone
Change-Id: Ia9f4c1778e06416018eeb07be657bcdd0af1496b
Diffstat (limited to 'src/com/android/gallery3d/filtershow/filters/FilterDirectRepresentation.java')
-rw-r--r--src/com/android/gallery3d/filtershow/filters/FilterDirectRepresentation.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/com/android/gallery3d/filtershow/filters/FilterDirectRepresentation.java b/src/com/android/gallery3d/filtershow/filters/FilterDirectRepresentation.java
index 9c986a685..ac0cb7492 100644
--- a/src/com/android/gallery3d/filtershow/filters/FilterDirectRepresentation.java
+++ b/src/com/android/gallery3d/filtershow/filters/FilterDirectRepresentation.java
@@ -18,6 +18,19 @@ package com.android.gallery3d.filtershow.filters;
public class FilterDirectRepresentation extends FilterRepresentation {
+ @Override
+ public FilterRepresentation copy() {
+ FilterDirectRepresentation representation = new FilterDirectRepresentation(getName());
+ copyAllParameters(representation);
+ return representation;
+ }
+
+ @Override
+ protected void copyAllParameters(FilterRepresentation representation) {
+ super.copyAllParameters(representation);
+ representation.useParametersFrom(this);
+ }
+
public FilterDirectRepresentation(String name) {
super(name);
}