Subversion Repositories ES

Rev

Rev 8 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

1
/*
 * Copyright (C) 2010 Thomas Lahn
 */


package de.pointedears.converter;

import android.app.Application;

/**
 * Converter application class. Holds the intent category for building
 * the list menu. Might later initialize prefs.
 *
 * @author Thomas 'PointedEars' Lahn
 */

public class ConverterApplication extends Application
{
  /**
   * Activity category for automatically filtering converter Activities
   */

  public final static String CATEGORY_CONVERTER =
    "android.intent.category.CONVERTER"; //$NON-NLS-1$

  /*
   * (non-Javadoc)
   *
   * @see android.app.Application#onCreate()
   */

  @Override
  public void onCreate()
  {
    /*
     * This populates the default values from the preferences XML file. See
     * {@link DefaultValues} for more details.
     */

    // PreferenceManager.setDefaultValues(this, R.xml.default_values, false);
  }

  /*
   * (non-Javadoc)
   *
   * @see android.app.Application#onTerminate()
   */

  @Override
  public void onTerminate()
  {
  }
}