2

解決できない小さな問題が 1 つあります。デフォルトでは、propertyingo 値は anyType です。

 <n1:Role i:type="d:anyType">

このタイプを a:User に変更するにはどうすればよいですか?

4

1 に答える 1

1

If I understood your question right you can just use setType method:You create your PropertyInfo object and then just set your custom type in your code:

 PropertyInfo role = new PropertyInfo();
role.setType(User.class);

Or another way is to assign your custom type (an instance of Class) to the type field of the PropertyInfo:

role.type = User.Class;

于 2013-03-18T14:16:51.953 に答える