1 7 8 package org.jboss.media.emb; 9 10 14 public class CaptureMetaData 15 { 16 private String m_deviceName; 17 private String m_type; 18 19 22 public String getDeviceName() 23 { 24 return m_deviceName; 25 } 26 27 30 public String getType() 31 { 32 return m_type; 33 } 34 35 38 public void setDeviceName(String string) 39 { 40 m_deviceName = string; 41 } 42 43 46 public void setType(String string) 47 { 48 m_type = string; 49 } 50 51 } 52 | Popular Tags |