File indexing completed on 2024-12-15 04:19:54

0001 package mso.generator.utils;
0002 
0003 import org.w3c.dom.Element;
0004 
0005 public class Stream {
0006 
0007     public final String key;
0008     public final String type;
0009 
0010     Stream(Element e) {
0011         key = e.getAttribute("key");
0012         type = e.getAttribute("type");
0013     }
0014 }