mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-15 15:41:24 +01:00
remove unused file
This commit is contained in:
parent
b07808e8db
commit
2d740bd4b0
1 changed files with 0 additions and 82 deletions
|
@ -1,82 +0,0 @@
|
|||
/*
|
||||
* Copyright (C) 2007 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 org.eehouse.android.xw4;
|
||||
|
||||
import android.net.Uri;
|
||||
import android.provider.BaseColumns;
|
||||
|
||||
/**
|
||||
* Convenience definitions
|
||||
*/
|
||||
public final class XWords4 {
|
||||
public static final String AUTHORITY = "org.eehouse.android.xw4";
|
||||
|
||||
// This class cannot be instantiated
|
||||
private XWords4() {}
|
||||
|
||||
/**
|
||||
* Notes table
|
||||
*/
|
||||
public static final class Games implements BaseColumns {
|
||||
// This class cannot be instantiated
|
||||
private Games() {}
|
||||
|
||||
/**
|
||||
* The content:// style URL for this table
|
||||
*/
|
||||
public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/games");
|
||||
|
||||
/**
|
||||
* The MIME type of {@link #CONTENT_URI} providing a directory of notes.
|
||||
*/
|
||||
public static final String CONTENT_TYPE = "vnd.android.cursor.dir/vnd.eehouse.org.xwgamesdir";
|
||||
|
||||
/**
|
||||
* The MIME type of a {@link #CONTENT_URI} sub-directory of a single note.
|
||||
*/
|
||||
public static final String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/vnd.eehouse.org.xwgame";
|
||||
|
||||
/**
|
||||
* The default sort order for this table
|
||||
*/
|
||||
public static final String DEFAULT_SORT_ORDER = "modified DESC";
|
||||
|
||||
/**
|
||||
* The title of the note
|
||||
* <P>Type: TEXT</P>
|
||||
*/
|
||||
//public static final String TITLE = "title";
|
||||
|
||||
/**
|
||||
* The note itself
|
||||
* <P>Type: binary</P>
|
||||
*/
|
||||
public static final String DATA = "data";
|
||||
|
||||
/**
|
||||
* The timestamp for when the game was created
|
||||
* <P>Type: INTEGER (long from System.curentTimeMillis())</P>
|
||||
*/
|
||||
public static final String CREATED_DATE = "created";
|
||||
|
||||
/**
|
||||
* The timestamp for when the game was last modified
|
||||
* <P>Type: INTEGER (long from System.curentTimeMillis())</P>
|
||||
*/
|
||||
public static final String MODIFIED_DATE = "modified";
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue