Advertisement
Guest User

Untitled

a guest
Feb 14th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.65 KB | None | 0 0
  1.             for(AttrMethodInfo attribute : p.getAttributes()) {
  2.                 JavaSourceData data1 = new JavaSourceData(attribute.getVisibility().toString(), attribute.getType().toString(), attribute.getName());
  3.                
  4.                 /*if(data1 != null) {
  5.                     data.add(data1);
  6.                 }*/
  7.                 data.add(data1);
  8.             }
  9.            
  10.             JavaSourceInformation jsi = new JavaSourceInformation("attribute", data);
  11.             lista.add(jsi);
  12.            
  13.             for(AttrMethodInfo method : p.getMethods()) {
  14.                 JavaSourceData data2 = new JavaSourceData(method.getVisibility().toString(), method.getType().toString(), method.getName());
  15.                
  16.                 /*if(data2 != null) {
  17.                     data.add(data2);
  18.                 }*/
  19.                 data.add(data2);
  20.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement