Overall Class Diagram I drew class diagram in android Studio. First picture is my class diagram. I have a question about it.
this is the problem
Definitely, I used method of UserMemoryParse
class in project_Utils
class. But any relationship between two classes is not defined in class diagram.
Code
This is my code related with aforementioned situation
Obviously two class have relationship ..... But why any relationship line can not be found in class diagram?
(+ and some line is thin while some line is thick (both of are association of relationship) what is the differences between that)
`
[1.Project_Utils class]
private void parseData()
{
mSequencEvent.onUtilUpdateStatus(IOnSequence.STATUS.PARSE);
mapParseData.clear();
List userList = new ArrayList(mapUserData.keySet());
for(int i=0; i<5; i++) {
String userData = userList.get(i).toString();
String a = mapUserData.get(userData);
String parseData = UserMemoryParse.pasingData(a,userData);
if (mSequencEvent != null)
mSequencEvent.onUtilUReceivedParseData(parseData);
}
}
[2.UserMemoryParse Class]
public static String pasingData(String a, String userMemory) {
String parseData = "Error";
try {
//HEX to binary
String binaryUserData = new BigInteger(userMemory, 16).toString(2);
}
`