May I know the way to represent my class object in UML Class Diagram which extends the class from external package such as abstract class BroadcastReceiver?
For instance I have the following class :-
public class MyBroadcastReceiver : BroadcastReceiver
{
private bool isConnected;
public MyBroadcastReceiver (Context context)
{
}
public override void OnReceive(Context context, Intent intent)
{
}
}