Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. Att volume = new Att("volume", "30db");
  2. ILoAtt volumeCons = new ConsLoAtt(volume, emptyLoAtt);
  3. Tag yell2 = new Tag("yell", volumeCons);
  4. Tagged yellGroup2 = new Tagged(yell2, italicCons);
  5. ILoXMLFrag yellGG2 = new ConsLoXMLFrag(yellGroup2, cons3);
  6. ILoXMLFrag xml4 = new ConsLoXMLFrag(plaintext1, yellGG2);
  7.  
  8. Att duration = new Att("duration", "5sec");
  9. ILoAtt durationCons = new ConsLoAtt(duration, emptyLoAtt);
  10. ILoAtt volumeCons2 = new ConsLoAtt(volume, durationCons);
  11. Tag yell3 = new Tag("yell", volumeCons);
  12. Tagged yellGroup3 = new Tagged(yell3, italicCons);
  13. ILoXMLFrag yellGG3 = new ConsLoXMLFrag(yellGroup3, cons3);
  14. ILoXMLFrag xml5 = new ConsLoXMLFrag(plaintext1, yellGG3);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement