Back to project page agldemo.
The source code is released under:
Copyright (c) 2013 Wenhao Li Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software...
If you think the Android project agldemo listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * Copyright (C) 2013 Wenhao Li. All Rights Reserved. *//* w w w . j ava2 s. c o m*/ package com.agldemo; import android.content.Context; /** * base class for lesson */ public abstract class Lesson extends BaseRenderer { private Context context; private String title; private String details; /** * Create a lesson. * @param title title of the lesson. * @param details detail description of the lesson. */ public Lesson(Context context, String title, String details) { this.context = context; this.title = title; this.details = details; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getDetails() { return details; } public void setDetails(String details) { this.details = details; } public Context getContext() { return context; } }