Back to project page android-plotter.
The source code is released under:
Apache License
If you think the Android project android-plotter 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 org.solovyev.android.plotter; /*from w ww. j ava 2 s . c o m*/ import javax.annotation.Nullable; public abstract class Function implements SuperFunction { @Nullable private final String name; protected Function() { this.name = null; } protected Function(@Nullable String name) { this.name = name; } @Nullable public String getName() { return name; } @Override public String toString() { return name != null ? name : super.toString(); } }