/*
* Copyright 2010 ANDAGO INGENIERIA S.L.
*
* Licensed under the EUPL, Version 1.1 only (the "Licence");
* You may not use this work except in compliance with the
* Licence.
* You may obtain a copy of the Licence at:
*
* http://ec.europa.eu/idabc/eupl
*
* Unless required by applicable law or agreed to in
* writing, software distributed under the Licence is
* distributed on an "AS IS" basis,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied.
* See the Licence for the specific language governing
* permissions and limitations under the Licence.
*/
package com.andago.contentProviders;
import android.net.Uri;
import android.provider.BaseColumns;
public final class Measurements {
public static final class MeasurementsData implements BaseColumns {
/**
* The content:// style URL for this table
*/
public static final Uri CONTENT_URI= Uri.parse("content://com.andago.contentProviders.Measurements/MeasurementsData");
/**
* The default sort order for this table
*/
public static final String DEFAULT_SORT_ORDER = "testDate DESC";
public static final String VAR_NAME = "variableName";
public static final String VALUE = "value";
public static final String UNIT = "unit";
public static final String TEST_DATE="testDate";
}
}
|