From f4b659334750a5aa75f929d18857a2ab93c9d939 Mon Sep 17 00:00:00 2001 From: John Hoford Date: Mon, 5 Aug 2013 15:07:14 -0700 Subject: fix draw Change-Id: I535221edd992c1a8c659c398dba61158e0c1d87d --- .../filters/ParametericFilterRepresentation.java | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/com/android/gallery3d/filtershow/filters/ParametericFilterRepresentation.java (limited to 'src/com/android/gallery3d/filtershow/filters/ParametericFilterRepresentation.java') 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); + } +} -- cgit v1.2.3