You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
420 B
26 lines
420 B
package com.example.fuckyou;
|
|
|
|
import android.util.Log;
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
public class Lesson {
|
|
public String name;
|
|
public String teacher;
|
|
public String classroom;
|
|
public int fromClass;
|
|
public int endClass;
|
|
public int day;
|
|
public Date date;
|
|
|
|
public void display()
|
|
{
|
|
Log.d("Curriculum_Display",name+classroom);
|
|
}
|
|
}
|
|
|
|
|