KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > media > emb > CaptureMetaData


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7  
8 package org.jboss.media.emb;
9
10 /**
11  * @version <tt>$Revision: 1.1 $</tt>
12  * @author <a HREF="mailto:spyridon_samothrakis@yahoo.com">Spyridon Samothrakis</a>
13  */

14 public class CaptureMetaData
15 {
16    private String JavaDoc m_deviceName;
17    private String JavaDoc m_type;
18    
19    /**
20     * @return
21     */

22    public String JavaDoc getDeviceName()
23    {
24       return m_deviceName;
25    }
26
27    /**
28     * @return
29     */

30    public String JavaDoc getType()
31    {
32       return m_type;
33    }
34
35    /**
36     * @param string
37     */

38    public void setDeviceName(String JavaDoc string)
39    {
40       m_deviceName = string;
41    }
42
43    /**
44     * @param string
45     */

46    public void setType(String JavaDoc string)
47    {
48       m_type = string;
49    }
50
51 }
52
Popular Tags