1 package org.jadetower.dao.test.daos.impl;
2
3 import org.jadetower.dao.test.daos.ContextDao;
4 import java.io.File;
5
6 public class ContextDaoBeanImpl implements ContextDao {
7
8 protected String m_name = null;
9 protected File m_file = null;
10
11 public ContextDaoBeanImpl(){
12 };
13
14 public String getName() {
15 return m_name;
16 }
17
18 public File getFile() {
19 return m_file;
20 }
21
22 public void setName(String name){
23 m_name = name;
24 }
25
26 public void setFile(File file){
27 m_file = file;
28 }
29
30 }
This page was automatically generated by Maven