Back to project page AndroidWearable-Samples.
The source code is released under:
Apache License
If you think the Android project AndroidWearable-Samples listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.example.android.support.wearable.notifications; // ww w. j a v a 2s .c o m /** * Base class for presets that have a simple name to display. */ public abstract class NamedPreset { public final int nameResId; public NamedPreset(int nameResId) { this.nameResId = nameResId; } }