Hello
Can anyone help me out here
I have a class, with one method
public class getUniqueId
{
public String uniqueId()
{
UID uniqueUserId = new UID();
//System.out.println("User id :"+uniqueUserId);
return uniqueUserId.toString();
}
}
I have another class file where i want to call the uniqueId() method
This doen't work
String uid = getUniqueId.uniqueId();
I'm being a bit think here, can someone help me out
Cheers