~trb143/openlp/android-backup

« back to all changes in this revision

Viewing changes to src/org/openlp/android/activity/Search.java

  • Committer: Tim Bentley
  • Author(s): Johan Mynhardt
  • Date: 2012-05-06 14:05:29 UTC
  • mfrom: (30.2.21 openlp-android)
  • Revision ID: tim.bentley@gmail.com-20120506140529-xbznc3aw1hgsfo98
Major UI/backend overhaul to achieve view swiping, including background service changes to improve user experience. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/******************************************************************************
 
2
 * OpenLP - Open Source Lyrics Projection                                      *
 
3
 * --------------------------------------------------------------------------- *
 
4
 * Copyright (c) 2011-2012 Raoul Snyman                                        *
 
5
 * Portions copyright (c) 2011-2012 Tim Bentley, Johan Mynhardt, Samuel        *
 
6
 * Sjöbergsson                                                                 *
 
7
 * --------------------------------------------------------------------------- *
 
8
 * This program is free software; you can redistribute it and/or modify it     *
 
9
 * under the terms of the GNU General Public License as published by the Free  *
 
10
 * Software Foundation; version 2 of the License.                              *
 
11
 *                                                                             *
 
12
 * This program is distributed in the hope that it will be useful, but WITHOUT *
 
13
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or       *
 
14
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for    *
 
15
 * more details.                                                               *
 
16
 *                                                                             *
 
17
 * You should have received a copy of the GNU General Public License along     *
 
18
 * with this program; if not, write to the Free Software Foundation, Inc., 59  *
 
19
 * Temple Place, Suite 330, Boston, MA 02111-1307 USA                          *
 
20
 *******************************************************************************/
 
21
package org.openlp.android.activity;
 
22
 
 
23
public interface Search {
 
24
        public final String ACTION = Search.class.getName().concat(".Action");
 
25
 
 
26
        public void searchPluginCall(String apiBase, String apiData);
 
27
}