summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/filtershow/filters/ParametericFilterRepresentation.java
diff options
context:
space:
mode:
authorJohn Hoford <hoford@google.com>2013-08-05 15:07:14 -0700
committerJohn Hoford <hoford@google.com>2013-08-09 17:21:22 -0700
commitf4b659334750a5aa75f929d18857a2ab93c9d939 (patch)
treefe4a4e7827129a79e694282a1506b9979ef1c712 /src/com/android/gallery3d/filtershow/filters/ParametericFilterRepresentation.java
parent8c3d2b9ab605cb8e5e883932147b8a378748ef32 (diff)
downloadandroid_packages_apps_Gallery2-f4b659334750a5aa75f929d18857a2ab93c9d939.tar.gz
android_packages_apps_Gallery2-f4b659334750a5aa75f929d18857a2ab93c9d939.tar.bz2
android_packages_apps_Gallery2-f4b659334750a5aa75f929d18857a2ab93c9d939.zip
fix draw
Change-Id: I535221edd992c1a8c659c398dba61158e0c1d87d
Diffstat (limited to 'src/com/android/gallery3d/filtershow/filters/ParametericFilterRepresentation.java')
-rw-r--r--src/com/android/gallery3d/filtershow/filters/ParametericFilterRepresentation.java27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/com/android/gallery3d/filtershow/filters/ParametericFilterRepresentation.java b/src/com/android/gallery3d/filtershow/filters/ParametericFilterRepresentation.java
new file mode 100644
index 000000000..9c50257f3
--- /dev/null
+++ b/src/com/android/gallery3d/filtershow/filters/ParametericFilterRepresentation.java
@@ -0,0 +1,27 @@
+/*
+ * Copyright (C) 2013 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+
+package com.android.gallery3d.filtershow.filters;
+
+/**
+ * Class to simplify creating representations that use Parametric controllers
+ */
+public class ParametericFilterRepresentation extends FilterRepresentation {
+ public ParametericFilterRepresentation(String name) {
+ super(name);
+ }
+}