Back to project page scala1_android.
The source code is released under:
Copyright (c) 2012, Magnetic Bear Studios Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditio...
If you think the Android project scala1_android 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.magneticbear.scala1; /*ww w . j a v a 2 s . c om*/ import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; import android.text.format.Time; public class Struct_Speaker { public Boolean isSeparator; public String name; public int speakerid; public String seperator_title; public Struct_Speaker(String Name, int SpeakerID) { isSeparator = false; name = Name; speakerid = SpeakerID; } public Struct_Speaker(String Title) { isSeparator = true; seperator_title = Title; } }